Commit 027bb1d2 authored by Martin Sustrik's avatar Martin Sustrik

issue 10 - zmq_strerror problem on Windows

parent 5cd9f74a
...@@ -77,6 +77,10 @@ const char *zmq_strerror (int errnum_) ...@@ -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";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment