stoddard 02/05/20 06:22:36
Modified: include apr_errno.h
Log:
Win32:
Netware/OS2 folks, do you need this too?
TransmitFile() returns ERROR_NETNAME_DELETED when the client closes
the connection. Subsequent calls to TransmitFile (on the same connection)
get th eexpected WSACONNRESET.
Revision Changes Path
1.91 +1 -0 apr/include/apr_errno.h
Index: apr_errno.h
===================================================================
RCS file: /home/cvs/apr/include/apr_errno.h,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- apr_errno.h 2 May 2002 19:38:17 -0000 1.90
+++ apr_errno.h 20 May 2002 13:22:36 -0000 1.91
@@ -972,6 +972,7 @@
#define APR_STATUS_IS_ECONNABORTED(s) ((s) == APR_ECONNABORTED \
|| (s) == APR_OS_START_SYSERR + WSAECONNABORTED)
#define APR_STATUS_IS_ECONNRESET(s) ((s) == APR_ECONNRESET \
+ || (s) == APR_OS_START_SYSERR + ERROR_NETNAME_DELETED \
|| (s) == APR_OS_START_SYSERR + WSAECONNRESET)
#define APR_STATUS_IS_ETIMEDOUT(s) ((s) == APR_ETIMEDOUT \
|| (s) == APR_OS_START_SYSERR + WSAETIMEDOUT \