From 898ee99dc16bbd494cabd7e09efac120d79990d7 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Thu, 18 Aug 2011 17:58:46 +0200 Subject: Windows build fixed Signed-off-by: Martin Sustrik --- src/tcp_address.hpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/tcp_address.hpp') diff --git a/src/tcp_address.hpp b/src/tcp_address.hpp index 7b848f9..a6075de 100644 --- a/src/tcp_address.hpp +++ b/src/tcp_address.hpp @@ -23,8 +23,12 @@ #include "platform.hpp" +#if defined ZMQ_HAVE_WINDOWS +#include "windows.hpp" +#else #include #include +#endif namespace zmq { @@ -42,7 +46,11 @@ namespace zmq // If 'ipv4only' is true, the name will never resolve to IPv6 address. int resolve (const char* name_, bool local_, bool ipv4only_); +#if defined ZMQ_HAVE_WINDOWS + unsigned short family (); +#else sa_family_t family (); +#endif sockaddr *addr (); socklen_t addrlen (); -- cgit v1.2.3