Commit 57c765ef authored by Juha Reunanen's avatar Juha Reunanen

Add EHOSTUNREACH to errno_to_string

parent 6ce2fb2b
...@@ -59,6 +59,8 @@ const char *zmq::errno_to_string (int errno_) ...@@ -59,6 +59,8 @@ const char *zmq::errno_to_string (int errno_)
return "Context was terminated"; return "Context was terminated";
case EMTHREAD: case EMTHREAD:
return "No thread available"; return "No thread available";
case EHOSTUNREACH:
return "Host unreachable";
default: default:
#if defined _MSC_VER #if defined _MSC_VER
#pragma warning (push) #pragma warning (push)
......
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