Commit d8f55dde authored by Luca Boccassi's avatar Luca Boccassi Committed by GitHub

Merge pull request #2164 from reunanen/add-EHOSTUNREACH-to-errno_to_string

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