]> git.tdb.fi Git - libs/net.git/commitdiff
Use the correct #ifdef for Windows
authorMikko Rasa <tdb@tdb.fi>
Wed, 14 Sep 2016 11:26:50 +0000 (14:26 +0300)
committerMikko Rasa <tdb@tdb.fi>
Wed, 14 Sep 2016 11:26:50 +0000 (14:26 +0300)
12 files changed:
source/net/clientsocket.cpp
source/net/constants.cpp
source/net/datagramsocket.cpp
source/net/inet.cpp
source/net/inet6.cpp
source/net/resolve.cpp
source/net/sockaddr_private.h
source/net/socket.cpp
source/net/socket_private.h
source/net/streamserversocket.cpp
source/net/streamsocket.cpp
source/net/unix.cpp

index d28d0e90b930487b4a573cb751356baf10575666..cbf18e593bdadc458ed862ab9aba326025df0bd1 100644 (file)
@@ -1,4 +1,4 @@
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #else
 #include <cerrno>
@@ -36,7 +36,7 @@ void ClientSocket::shutdown(IO::Mode m)
 {
        int how;
        m = m&IO::M_RDWR;
-#ifdef WIN32
+#ifdef _WIN32
        if(m==IO::M_READ)
                how = SD_RECEIVE;
        else if(m==IO::M_WRITE)
index e57897dcffa784eefef2fa6e9610e274a3339964..c98945c21123a70301f2273e96658d42ea1bcb83 100644 (file)
@@ -1,5 +1,5 @@
 #include <stdexcept>
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #else
 #include <sys/socket.h>
index 664c2659de69ec43eaf9a0a0097d77522e84f58a..0e405d6f0cb7972fed62e418d447a2dc4c303b31 100644 (file)
@@ -1,4 +1,4 @@
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #endif
 #include <cerrno>
@@ -15,7 +15,7 @@ namespace Net {
 DatagramSocket::DatagramSocket(Family f, int p):
        ClientSocket(f, SOCK_DGRAM, p)
 {
-#ifdef WIN32
+#ifdef _WIN32
        WSAEventSelect(priv->handle, *priv->event, FD_READ|FD_CLOSE);
 #endif
        set_events(IO::P_INPUT);
@@ -28,7 +28,7 @@ bool DatagramSocket::connect(const SockAddr &addr)
        int err = ::connect(priv->handle, reinterpret_cast<sockaddr *>(&sa.addr), sa.size);
        if(err==-1)
        {
-#ifdef WIN32
+#ifdef _WIN32
                throw system_error("connect", WSAGetLastError());
 #else
                throw system_error("connect");
@@ -62,7 +62,7 @@ unsigned DatagramSocket::sendto(const char *buf, unsigned size, const SockAddr &
                        return 0;
                else
                {
-#ifdef WIN32
+#ifdef _WIN32
                        throw system_error("sendto", WSAGetLastError());
 #else
                        throw system_error("sendto");
@@ -86,7 +86,7 @@ unsigned DatagramSocket::recvfrom(char *buf, unsigned size, SockAddr *&from_addr
                        return 0;
                else
                {
-#ifdef WIN32
+#ifdef _WIN32
                        throw system_error("recvfrom", WSAGetLastError());
 #else
                        throw system_error("recvfrom");
index c78ea6165cd9d4e77d535172b1d2e4b6cb0a10de..f428492f04bb4e7817af30aa4230fb3e59a9e710 100644 (file)
@@ -1,4 +1,4 @@
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #else
 #include <netinet/in.h>
index 79da1d2269316e2ab0931f738b2fd160f6d3b773..f33ed182305882d4753d2365116d31e4163a7263 100644 (file)
@@ -1,4 +1,4 @@
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #include <ws2tcpip.h>
 #else
index 992973a01dea4f73c51b54600748b0015ce0542b..ce47b51f8a4155e3de43b6651459b160e6b0a629 100644 (file)
@@ -1,4 +1,4 @@
-#ifdef WIN32
+#ifdef _WIN32
 #define _WIN32_WINNT 0x0501
 #include <ws2tcpip.h>
 #else
@@ -70,7 +70,7 @@ SockAddr *resolve(const string &host, const string &serv, Family family)
                return addr;
        }
        else
-#ifdef WIN32
+#ifdef _WIN32
                throw system_error("getaddrinfo", WSAGetLastError());
 #else
                throw system_error("getaddrinfo", gai_strerror(err));
index 16af063a3f75346a8494116dccb145fe9f9d8478..4aa9231333fc854d7b5c445fbecc86b6279f23f1 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef MSP_NET_SOCKADDR_PRIVATE_H_
 #define MSP_NET_SOCKADDR_PRIVATE_H_
 
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #else
 #include <sys/socket.h>
@@ -14,7 +14,7 @@ namespace Net {
 struct SockAddr::SysAddr
 {
        struct sockaddr_storage addr;
-#ifdef WIN32
+#ifdef _WIN32
        int size;
 #else
        socklen_t size;
index 7c162178eb1a822c43d9167d741bba67131674f0..1a5898b694e9a8ea7179ad286457ead78871da64 100644 (file)
@@ -1,4 +1,4 @@
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #else
 #include <cerrno>
@@ -18,7 +18,7 @@
 
 namespace {
 
-#ifdef WIN32
+#ifdef _WIN32
 class WinSockHelper
 {
 public:
@@ -56,7 +56,7 @@ Socket::Socket(const Private &p):
        getsockname(priv->handle, reinterpret_cast<sockaddr *>(&sa.addr), &sa.size);
        local_addr = SockAddr::new_from_sys(sa);
 
-#ifdef WIN32
+#ifdef _WIN32
        *priv->event = CreateEvent(0, false, false, 0);
 #else
        *priv->event = priv->handle;
@@ -71,7 +71,7 @@ Socket::Socket(Family af, int type, int proto):
 
        priv->handle = socket(family_to_sys(af), type, proto);
 
-#ifdef WIN32
+#ifdef _WIN32
        *priv->event = CreateEvent(0, false, false, 0);
 #else
        *priv->event = priv->handle;
@@ -80,7 +80,7 @@ Socket::Socket(Family af, int type, int proto):
 
 Socket::~Socket()
 {
-#ifdef WIN32
+#ifdef _WIN32
        closesocket(priv->handle);
        CloseHandle(*priv->event);
 #else
@@ -97,7 +97,7 @@ void Socket::set_block(bool b)
        if(b)
                mode = (mode|IO::M_NONBLOCK);
 
-#ifdef WIN32
+#ifdef _WIN32
        u_long flag = !b;
        ioctlsocket(priv->handle, FIONBIO, &flag);
 #else
@@ -133,7 +133,7 @@ const SockAddr &Socket::get_local_address() const
 
 void Socket::set_timeout(const Time::TimeDelta &timeout)
 {
-#ifndef WIN32
+#ifndef _WIN32
        timeval tv = Time::rawtime_to_timeval(timeout.raw());
        priv->set_option(SOL_SOCKET, SO_RCVTIMEO, &tv, sizeof(timeval));
        priv->set_option(SOL_SOCKET, SO_SNDTIMEO, &tv, sizeof(timeval));
@@ -147,7 +147,7 @@ void Socket::set_timeout(const Time::TimeDelta &timeout)
 
 int Socket::Private::set_option(int level, int optname, const void *optval, socklen_t optlen)
 {
-#ifdef WIN32
+#ifdef _WIN32
        return setsockopt(handle, level, optname, reinterpret_cast<const char *>(optval), optlen);
 #else
        return setsockopt(handle, level, optname, optval, optlen);
@@ -156,7 +156,7 @@ int Socket::Private::set_option(int level, int optname, const void *optval, sock
 
 int Socket::Private::get_option(int level, int optname, void *optval, socklen_t *optlen)
 {
-#ifdef WIN32
+#ifdef _WIN32
        return getsockopt(handle, level, optname, reinterpret_cast<char *>(optval), optlen);
 #else
        return getsockopt(handle, level, optname, optval, optlen);
index fc8b23be4cf118d6e984f89735b43fc5c0345169..995ead0f3951b88bff1462d1cea515b97de10278 100644 (file)
@@ -7,13 +7,13 @@
 namespace Msp {
 namespace Net {
 
-#ifdef WIN32
+#ifdef _WIN32
 typedef int socklen_t;
 #endif
 
 struct Socket::Private
 {
-#ifdef WIN32
+#ifdef _WIN32
        SOCKET handle;
 #else
        int handle;
index 8039ec986155155196eb4360c62197468ddc7914..e408dcedfb6ae6c2506e3fd81565c7da7d04f947 100644 (file)
@@ -1,4 +1,4 @@
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #endif
 #include <cerrno>
@@ -29,7 +29,7 @@ void StreamServerSocket::listen(const SockAddr &addr, unsigned backlog)
        if(err==-1)
                throw system_error("listen");
 
-#ifdef WIN32
+#ifdef _WIN32
        WSAEventSelect(priv->handle, *priv->event, FD_ACCEPT);
 #endif
        set_events(IO::P_INPUT);
index 85f2b00a05d33e7820a022f6bb0e83716d0829f5..da5069cee21603110213dcfd3bf6ecc3904ae2ab 100644 (file)
@@ -1,4 +1,4 @@
-#ifdef WIN32
+#ifdef _WIN32
 #include <winsock2.h>
 #else
 #include <sys/socket.h>
@@ -18,7 +18,7 @@ namespace Net {
 StreamSocket::StreamSocket(const Private &p, const SockAddr &paddr):
        ClientSocket(p, paddr)
 {
-#ifdef WIN32
+#ifdef _WIN32
        WSAEventSelect(priv->handle, *priv->event, FD_READ|FD_CLOSE);
 #endif
        set_events(IO::P_INPUT);
@@ -36,7 +36,7 @@ bool StreamSocket::connect(const SockAddr &addr)
        SockAddr::SysAddr sa = addr.to_sys();
 
        int err = ::connect(priv->handle, reinterpret_cast<sockaddr *>(&sa.addr), sa.size);
-#ifdef WIN32
+#ifdef _WIN32
        if(err==SOCKET_ERROR)
        {
                int err_code = WSAGetLastError();
@@ -73,7 +73,7 @@ bool StreamSocket::connect(const SockAddr &addr)
        if(err==0)
        {
                connected = true;
-#ifdef WIN32
+#ifdef _WIN32
                WSAEventSelect(priv->handle, *priv->event, FD_READ|FD_CLOSE);
 #endif
                set_events(IO::P_INPUT);
@@ -100,14 +100,14 @@ bool StreamSocket::poll_connect(const Time::TimeDelta &timeout)
                if(err!=0)
                {
                        set_events(IO::P_NONE);
-#ifdef WIN32
+#ifdef _WIN32
                        throw system_error("connect", WSAGetLastError());
 #else
                        throw system_error("connect");
 #endif
                }
 
-#ifdef WIN32
+#ifdef _WIN32
                WSAEventSelect(priv->handle, *priv->event, FD_READ|FD_CLOSE);
 #endif
                set_events(IO::P_INPUT);
@@ -142,7 +142,7 @@ void StreamSocket::on_event(IO::PollEvent ev)
                        peer_addr = 0;
                }
 
-#ifdef WIN32
+#ifdef _WIN32
                WSAEventSelect(priv->handle, *priv->event, FD_READ|FD_CLOSE);
 #endif
                set_events((err==0) ? IO::P_INPUT : IO::P_NONE);
index cd1f41429e1c52f0cbd9f72559f9bc734b1c1be4..9d8cf2780af0da1d99eb177136944b30659730bb 100644 (file)
@@ -1,5 +1,5 @@
 #include <stdexcept>
-#ifndef WIN32
+#ifndef _WIN32
 #include <sys/un.h>
 #endif
 #include "sockaddr_private.h"
@@ -13,7 +13,7 @@ namespace Net {
 UnixAddr::UnixAddr():
        abstract(false)
 {
-#ifdef WIN32
+#ifdef _WIN32
        throw logic_error("no unix sockets on windows");
 #endif
 }
@@ -21,7 +21,7 @@ UnixAddr::UnixAddr():
 UnixAddr::UnixAddr(const SysAddr &sa):
        abstract(false)
 {
-#ifdef WIN32
+#ifdef _WIN32
        (void)sa;
        throw logic_error("no unix sockets on windows");
 #else
@@ -38,7 +38,7 @@ UnixAddr::UnixAddr(const string &p, bool a):
        path(p),
        abstract(a)
 {
-#ifdef WIN32
+#ifdef _WIN32
        throw logic_error("no unix sockets on windows");
 #else
        if(sizeof(sa_family_t)+path.size()+1>sizeof(sockaddr_storage))
@@ -49,7 +49,7 @@ UnixAddr::UnixAddr(const string &p, bool a):
 SockAddr::SysAddr UnixAddr::to_sys() const
 {
        SysAddr sa;
-#ifndef WIN32
+#ifndef _WIN32
        sa.size = sizeof(sa_family_t);
        if(!path.empty())
                sa.size += path.size()+1;