mirror of
https://github.com/zeromq/libzmq.git
synced 2025-01-03 03:45:43 +08:00
issue 10 - zmq_strerror problem on Windows
This commit is contained in:
parent
5cd9f74a70
commit
027bb1d2a7
@ -77,6 +77,10 @@ const char *zmq_strerror (int errnum_)
|
|||||||
return "Address in use";
|
return "Address in use";
|
||||||
case EADDRNOTAVAIL:
|
case EADDRNOTAVAIL:
|
||||||
return "Address not available";
|
return "Address not available";
|
||||||
|
case ECONNREFUSED:
|
||||||
|
return "Connection refused";
|
||||||
|
case EINPROGRESS:
|
||||||
|
return "Operation in progress";
|
||||||
#endif
|
#endif
|
||||||
case EMTHREAD:
|
case EMTHREAD:
|
||||||
return "Number of preallocated application threads exceeded";
|
return "Number of preallocated application threads exceeded";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user