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.cpp | 7 +++++-- src/tcp_address.hpp | 8 ++++++++ 2 files changed, 13 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/tcp_address.cpp b/src/tcp_address.cpp index 358c847..7be8b75 100644 --- a/src/tcp_address.cpp +++ b/src/tcp_address.cpp @@ -23,15 +23,14 @@ #include "tcp_address.hpp" #include "platform.hpp" +#include "stdint.hpp" #include "err.hpp" #ifdef ZMQ_HAVE_WINDOWS #include "windows.hpp" #else #include -#include #include -#include #include #include #endif @@ -415,7 +414,11 @@ socklen_t zmq::tcp_address_t::addrlen () return (socklen_t) sizeof (address.ipv4); } +#if defined ZMQ_HAVE_WINDOWS +unsigned short zmq::tcp_address_t::family () +#else sa_family_t zmq::tcp_address_t::family () +#endif { return address.generic.sa_family; } 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