mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 10:42:12 -04:00
1174. [bug] Win32: add WSAECONNRESET to the expected errors
from connect(). [RT #2308]
This commit is contained in:
parent
80278e8856
commit
d073663cb4
2 changed files with 5 additions and 1 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
1174. [bug] Win32: add WSAECONNRESET to the expected errors
|
||||
from connect(). [RT #2308]
|
||||
|
||||
1173. [bug] Potential leaks in isc_log_create() and
|
||||
isc_log_settag(). [RT #2336]
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: socket.c,v 1.12 2001/11/29 07:31:23 marka Exp $ */
|
||||
/* $Id: socket.c,v 1.13 2002/01/10 03:50:13 marka Exp $ */
|
||||
|
||||
|
||||
#define MAKE_EXTERNAL 1
|
||||
|
|
@ -3038,6 +3038,7 @@ isc_socket_connect(isc_socket_t *sock, isc_sockaddr_t *addr,
|
|||
ERROR_MATCH(WSAENOBUFS, ISC_R_NORESOURCES);
|
||||
ERROR_MATCH(EPERM, ISC_R_HOSTUNREACH);
|
||||
ERROR_MATCH(EPIPE, ISC_R_NOTCONNECTED);
|
||||
ERROR_MATCH(WSAECONNRESET, ISC_R_CONNECTIONRESET);
|
||||
#undef ERROR_MATCH
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue