mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-08 23:32:05 -04:00
handle connect() returning ETIMEDOUT on a non-blocking socket
This commit is contained in:
parent
f30bdd1aac
commit
91a0cb5da3
1 changed files with 1 additions and 0 deletions
|
|
@ -4790,6 +4790,7 @@ isc_socket_connect(isc_socket_t *sock0, const isc_sockaddr_t *addr,
|
|||
ERROR_MATCH(ENOBUFS, ISC_R_NORESOURCES);
|
||||
ERROR_MATCH(EPERM, ISC_R_HOSTUNREACH);
|
||||
ERROR_MATCH(EPIPE, ISC_R_NOTCONNECTED);
|
||||
ERROR_MATCH(ETIMEDOUT, ISC_R_TIMEDOUT);
|
||||
ERROR_MATCH(ECONNRESET, ISC_R_CONNECTIONRESET);
|
||||
#undef ERROR_MATCH
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue