From d8c58080a7600bb838b0ee8c73aaa9a291815c97 Mon Sep 17 00:00:00 2001 From: Pieter Hintjens Date: Wed, 4 Apr 2012 14:39:11 +0100 Subject: [PATCH] Fixed issue #351 --- include/zmq.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/zmq.h b/include/zmq.h index 9ed9cee3..fc6c7a02 100644 --- a/include/zmq.h +++ b/include/zmq.h @@ -109,6 +109,9 @@ ZMQ_EXPORT void zmq_version (int *major, int *minor, int *patch); #ifndef EAFNOSUPPORT #define EAFNOSUPPORT (ZMQ_HAUSNUMERO + 10) #endif +#ifndef EHOSTUNREACH +#define EHOSTUNREACH (ZMQ_HAUSNUMERO + 11) +#endif /* Native 0MQ error codes. */ #define EFSM (ZMQ_HAUSNUMERO + 51)