summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_socket.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2024-01-16White space formatting fixesAndrei Zeliankou1-4/+4
Closes: <https://github.com/nginx/unit/pull/1062>
2020-06-23Decreased level of some socket close() errors.Igor Sysoev1-12/+35
2020-04-08Removed unused code related to testing of address binding.Valentin Bartenev1-11/+2
2019-11-14Initial proxy support.Igor Sysoev1-0/+3
2019-11-14Fixed connect(2) errors processing on old Linuxes.Igor Sysoev1-0/+22
While connect(2) states that non-blocking connect should use EPOLLOUT: EINPROGRESS The socket is non-blocking and the connection cannot be completed immediately. It is possible to select(2) or poll(2) for completion by selecting the socket for writing. After select(2) indicates writability, use getsockopt(2) to read the SO_ERROR option at level SOL_SOCKET to determine whether connect() completed successfully (SO_ERROR is zero) or unsuccessfully (SO_ERROR is one of the usual error codes listed here, explaining the reason for the failure). On connect error, Linux 2.6.32 (CentOS 6) may return EPOLLRDHUP, EPOLLERR, EPOLLHUP, EPOLLIN, but not EPOLLOUT.
2019-06-18Decreased level of some shutdown() and send() errors.Igor Sysoev1-2/+2
2018-03-05Reduced number of critical log levels.Valentin Bartenev1-15/+14
2018-01-24Fixed formatting in nxt_sprintf() and logging.Sergey Kandaurov1-1/+1
2018-01-24Using size_t for the field width type of the "%*s" specifier.Sergey Kandaurov1-5/+7
2017-08-26Introduced nxt_socket_defer_accept().Igor Sysoev1-0/+21
2017-07-05Router: processing JSON configuration.Igor Sysoev1-1/+1
2017-02-22I/O operations refactoring.Igor Sysoev1-63/+45
2017-01-17Initial version.Igor Sysoev1-0/+317