2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

1174. [bug] Win32: add WSAECONNRESET to the expected errors

from connect(). [RT #2308]
This commit is contained in:
Mark Andrews
2002-01-10 03:50:13 +00:00
parent 80278e8856
commit d073663cb4
2 changed files with 5 additions and 1 deletions

View File

@@ -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]

View File

@@ -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
}