summaryrefslogtreecommitdiff
path: root/src/ip.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ip.hpp')
-rw-r--r--src/ip.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ip.hpp b/src/ip.hpp
index ffab2f2..d963df2 100644
--- a/src/ip.hpp
+++ b/src/ip.hpp
@@ -30,6 +30,11 @@
#include <arpa/inet.h>
#include <netinet/in.h>
#include <netdb.h>
+#endif
+
+#if !defined ZMQ_HAVE_WINDOWS && !defined ZMQ_HAVE_OPENVMS
+#include <sys/un.h>
+#endif
// Some platforms (notably Darwin/OSX and NetBSD) do not define all AI_
// flags for getaddrinfo(). This can be worked around safely by defining
@@ -40,11 +45,6 @@
#ifndef AI_NUMERICSERV
#define AI_NUMERICSERV 0
#endif
-#endif
-
-#if !defined ZMQ_HAVE_WINDOWS && !defined ZMQ_HAVE_OPENVMS
-#include <sys/un.h>
-#endif
namespace zmq
{