mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-02 15:45:25 +00:00
remove connection aborted error message
This commit is contained in:
@@ -15,7 +15,7 @@
|
|||||||
* PERFORMANCE OF THIS SOFTWARE.
|
* PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: socket.c,v 1.81 2009/11/10 18:31:47 each Exp $ */
|
/* $Id: socket.c,v 1.82 2010/08/13 10:45:32 fdupont Exp $ */
|
||||||
|
|
||||||
/* This code uses functions which are only available on Server 2003 and
|
/* This code uses functions which are only available on Server 2003 and
|
||||||
* higher, and Windows XP and higher.
|
* higher, and Windows XP and higher.
|
||||||
@@ -2439,7 +2439,8 @@ SocketIoThread(LPVOID ThreadContext) {
|
|||||||
send_recvdone_abort(sock, isc_result);
|
send_recvdone_abort(sock, isc_result);
|
||||||
if ((isc_result == ISC_R_UNEXPECTED) ||
|
if ((isc_result == ISC_R_UNEXPECTED) ||
|
||||||
((isc_result == ISC_R_CONNECTIONRESET) &&
|
((isc_result == ISC_R_CONNECTIONRESET) &&
|
||||||
(errstatus != ERROR_OPERATION_ABORTED)) ||
|
(errstatus != ERROR_OPERATION_ABORTED) &&
|
||||||
|
(errstatus != ERROR_CONNECTION_ABORTED)) ||
|
||||||
(isc_result == ISC_R_HOSTUNREACH)) {
|
(isc_result == ISC_R_HOSTUNREACH)) {
|
||||||
UNEXPECTED_ERROR(__FILE__, __LINE__,
|
UNEXPECTED_ERROR(__FILE__, __LINE__,
|
||||||
"SOCKET_RECV: Windows error code: %d, returning ISC error %d",
|
"SOCKET_RECV: Windows error code: %d, returning ISC error %d",
|
||||||
|
Reference in New Issue
Block a user