Commit fc335c59 authored by Steven McCoy's avatar Steven McCoy

Fix missing ENETRESET for Jira #LIBZMQ-329.

parent 5b3d0c63
...@@ -130,6 +130,9 @@ ZMQ_EXPORT void zmq_version (int *major, int *minor, int *patch); ...@@ -130,6 +130,9 @@ ZMQ_EXPORT void zmq_version (int *major, int *minor, int *patch);
#ifndef EHOSTUNREACH #ifndef EHOSTUNREACH
#define EHOSTUNREACH (ZMQ_HAUSNUMERO + 17) #define EHOSTUNREACH (ZMQ_HAUSNUMERO + 17)
#endif #endif
#ifndef ENETRESET
#define ENETRESET (ZMQ_HAUSNUMERO + 18)
#endif
/* Native 0MQ error codes. */ /* Native 0MQ error codes. */
#define EFSM (ZMQ_HAUSNUMERO + 51) #define EFSM (ZMQ_HAUSNUMERO + 51)
......
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