| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix some warnings noticed by the readability-* clang-tidy checkers. | 2022-09-03 | 1 | -1/+1 | |
| | | |||||
| * | Fix another case of `fd < 0` instead of calling HasFd. | 2022-09-03 | 1 | -5/+2 | |
| | | |||||
| * | Switch from NULL to nullptr. | 2022-07-22 | 1 | -3/+3 | |
| | | |||||
| * | Rewrite logging calls to use the new APIs. | 2022-05-01 | 4 | -20/+20 | |
| | | |||||
| * | Slim down the globally included files. | 2022-04-30 | 1 | -1/+0 | |
| | | |||||
| * | Merge branch 'insp3' into master. | 2022-04-29 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2022-04-28 | 1 | -1/+1 | |
| | | | |||||
| * | | Slim the included headers down more. | 2022-01-26 | 1 | -3/+2 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2022-01-15 | 1 | -1/+1 | |
| |\| | |||||
| | * | Fix a warning when building with the poll socket engine on Alpine. | 2022-01-15 | 1 | -1/+1 | |
| | | | |||||
| * | | Added -Wshorten-64-to-32 and fixed all warnings. | 2021-05-30 | 3 | -5/+5 | |
| | | | |||||
| * | | Remove unnecessary prefix from socketengine source files. | 2021-03-05 | 4 | -0/+0 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2021-03-05 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2021-03-05 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2021-02-28 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2021-02-26 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-01-17 | 4 | -11/+33 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-01-11 | 4 | -11/+33 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-01-01 | 1 | -0/+6 | |
| |\| | |||||
| | * | Initialise Winsock from inside the socket engine. | 2019-12-08 | 1 | -0/+6 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2019-11-13 | 1 | -2/+2 | |
| |\| | |||||
| | * | Tweak the workaround for NetBSD's kqueue using intptr_t for udata. | 2019-10-05 | 1 | -2/+2 | |
| | | | | | | | | | Thanks to @niacat for getting this fixed upstream. | ||||
| * | | Merge branch 'insp3' into master. | 2019-05-15 | 2 | -5/+20 | |
| |\| | |||||
| | * | epoll: use a default list size of 16 to match other socket engines. | 2019-05-14 | 1 | -1/+1 | |
| | | | |||||
| | * | Work around NetBSD's EV_SET using intptr_t instead of void*. | 2019-05-03 | 1 | -4/+19 | |
| | | | | | | | | | Reported by @ensra. | ||||
| * | | LogManager: remove fakederef. | 2019-02-07 | 4 | -20/+20 | |
| |/ | |||||
| * | Deduplicate error handling in the socket engines. | 2017-10-22 | 3 | -20/+3 | |
| | | |||||
| * | Convert GetMaxFds() to size_t and deduplicate setting code. | 2017-10-22 | 4 | -33/+13 | |
| | | |||||
| * | Remove support for the Solaris IOCP socket engine. | 2017-10-22 | 1 | -173/+0 | |
| | | | | | | | | | | | After discussing this with Adam we have decided that there is very little point in keeping this now that Solaris has been killed. Any legacy Solaris users will have to make do with poll. This change does not affect users of Solaris forks like Illumos as they have support for epoll which will have already been selected over Solaris IOCP by configure. | ||||
| * | socketengine_poll: fix initialization fd_mappings | 2017-10-21 | 1 | -1/+1 | |
| | | |||||
| * | Merge pull request #1337 from SaberUK/master+merge | 2017-07-12 | 1 | -3/+7 | |
| |\ | | | | | Merge v2.0.23 and v2.0.24 into master. | ||||
| | * | Merge v2.0.23 and v2.0.24 into master. | 2017-07-09 | 1 | -3/+7 | |
| | |\ | |||||
| | | * | socketengine_epoll: use getrlimit not ulimit | 2016-11-22 | 1 | -4/+5 | |
| | | | | |||||
| * | | | Improve and centralize socket engine event counters. | 2017-07-11 | 4 | -8/+0 | |
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The write counters were close to useless because they were only incremented on a write "event" which is only triggered when writing would block. Read handling was a little more useful in that all reads must happen through the socket engine, so these were happening at the correct time, but we can clean this up by doing it in the SE itself rather than each platform port. This means that both read and write events are now easily and usefully defined as "a syscall of either read or write was attempted". We also count empty read and write events as being an event, because they still were an attempt to poll a socket in some way. This may help to identify "bad" code which is repeatedly trying to read a socket for some reason. Lastly, we check for failed read/write calls, and log them as an error event. A lot of the time, this is how sockets are determined as being disconnected (ie. at read/write time). While we're at it, split Update() in two to make the calls more self-describing. This has no real impact since only one call is made at a time anyway. | ||||
| * | | Fix poll using int instead of size_t which caused a warning. | 2016-08-19 | 1 | -1/+1 | |
| | | | |||||
| * | | Fix a build error in the poll socket engine. | 2016-08-19 | 1 | -1/+1 | |
| | | | |||||
| * | | socketengine_epoll Remove unused #define EP_DELAY 5 | 2016-08-11 | 1 | -1/+0 | |
| | | | |||||
| * | | Dispatch EventHandler events to dedicated virtual functions | 2015-04-12 | 5 | -16/+16 | |
| | | | | | | | | | Remove enum EventType | ||||
| * | | Kill needless #includes in source files | 2014-06-14 | 5 | -14/+1 | |
| | | | |||||
| * | | Change the number reported by SocketEngine::GetMaxFds() to be informal | 2014-06-07 | 4 | -32/+8 | |
| | | | | | | | | | Do not exit if we can't determine it | ||||
| * | | socketengine_epoll Pass a dummy value to epoll_create() that does not depend ↵ | 2014-06-07 | 1 | -2/+3 | |
| | | | | | | | | | | | | | | | on GetMaxFds() From man epoll: Since Linux 2.6.8, the size argument is unused, but must be greater than zero. (The kernel dynamically sizes the required data structures without needing this initial hint.) | ||||
| * | | Relax fd bounds checking | 2014-06-07 | 4 | -12/+12 | |
| | | | | | | | | | We can cope with fds greater than SocketEngine::GetMaxFds() since 3752b3f59d5216d7dc6221a361efc76b9ad2273d | ||||
| * | | Clean up a bunch of legacy code in the Poll socketengine. | 2014-04-11 | 1 | -11/+2 | |
| | | | |||||
| * | | Merge insp20 | 2014-04-07 | 1 | -1/+3 | |
| |\| | |||||
| | * | socketengine_select Reset the values in the timeval struct on *nix before ↵ | 2014-02-13 | 1 | -1/+3 | |
| | | | | | | | | | select() | ||||
| | * | socketengine_epoll Initialize CurrentSetSize (only used by m_httpd_stats) | 2014-02-05 | 1 | -0/+1 | |
| | | | |||||
| | * | Fix new file descriptor debug log message in socketengine_poll to show the ↵ | 2014-02-04 | 1 | -1/+1 | |
| | | | | | | | | | correct events | ||||
| * | | Store the EventHandler* in the kevent/epoll_event/portev struct | 2014-02-09 | 3 | -19/+17 | |
| | | | | | | | | | This removes the need to call GetRef() for every socket in DispatchEvents() | ||||
| * | | Queue changes in socketengine_kqueue and submit them as we poll for new events | 2014-02-09 | 1 | -42/+26 | |
| | | | |||||
| * | | Change all socketengine methods to be static | 2014-02-08 | 5 | -145/+97 | |
| | | | |||||
