0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-31 01:43:02 +08:00

issue 10 - zmq_strerror problem on Windows

This commit is contained in:
Martin Sustrik 2010-04-08 19:20:42 +02:00
parent 5cd9f74a70
commit 027bb1d2a7

View File

@ -77,6 +77,10 @@ const char *zmq_strerror (int errnum_)
return "Address in use";
case EADDRNOTAVAIL:
return "Address not available";
case ECONNREFUSED:
return "Connection refused";
case EINPROGRESS:
return "Operation in progress";
#endif
case EMTHREAD:
return "Number of preallocated application threads exceeded";