Skip to content

Commit

Permalink
issue 10 - zmq_strerror problem on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
sustrik committed Apr 8, 2010
1 parent 5cd9f74 commit 027bb1d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/zmq.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 027bb1d

Please sign in to comment.