summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-06-26 10:03:09 +0000
committerBenny Prijono <bennylp@teluu.com>2006-06-26 10:03:09 +0000
commit2b1beec5ad1aee071b51310b1a7572f83d4325c9 (patch)
treed5a724c85e8cde6b326114bc262ae12e95ee5091
parent05d009243bd3960330751bb848478742e74fe893 (diff)
Added OSERR_ENOTCONN to compat/socket.h
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@553 74dad513-b988-da41-8d7b-12977e46ad98
-rw-r--r--pjlib/include/pj/compat/socket.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/pjlib/include/pj/compat/socket.h b/pjlib/include/pj/compat/socket.h
index e3f68b5d..a3715e7d 100644
--- a/pjlib/include/pj/compat/socket.h
+++ b/pjlib/include/pj/compat/socket.h
@@ -81,10 +81,12 @@
# define OSERR_EWOULDBLOCK WSAEWOULDBLOCK
# define OSERR_EINPROGRESS WSAEINPROGRESS
# define OSERR_ECONNRESET WSAECONNRESET
+# define OSERR_ENOTCONN WSAENOTCONN
#else
# define OSERR_EWOULDBLOCK EWOULDBLOCK
# define OSERR_EINPROGRESS EINPROGRESS
# define OSERR_ECONNRESET ECONNRESET
+# define OSERR_ENOTCONN ENOTCONN
#endif