summaryrefslogtreecommitdiff
path: root/node/SocketManager.hpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@zerotier.com>2014-03-25 08:37:08 -0700
committerAdam Ierymenko <adam.ierymenko@zerotier.com>2014-03-25 08:37:08 -0700
commit328be8f8461462ad88a639822b7df32f7b92211f (patch)
tree69c1d4dec9b0f0c885f5c3c922e7c0bada582181 /node/SocketManager.hpp
parentd9b91758e044a70242dee1697345cd2ee4a096d4 (diff)
downloadinfinitytier-328be8f8461462ad88a639822b7df32f7b92211f.tar.gz
infinitytier-328be8f8461462ad88a639822b7df32f7b92211f.zip
Make Windows build, add (untested) Windows named pipe based IPC code.
Diffstat (limited to 'node/SocketManager.hpp')
-rw-r--r--node/SocketManager.hpp68
1 files changed, 15 insertions, 53 deletions
diff --git a/node/SocketManager.hpp b/node/SocketManager.hpp
index dbc4e686..003c35eb 100644
--- a/node/SocketManager.hpp
+++ b/node/SocketManager.hpp
@@ -30,16 +30,6 @@
#include <stdio.h>
#include <stdlib.h>
-#ifdef __WINDOWS__
-#include <WinSock2.h>
-#include <WS2tcpip.h>
-#include <Windows.h>
-#else
-#include <unistd.h>
-#include <sys/time.h>
-#include <sys/types.h>
-#include <sys/select.h>
-#endif
#include <map>
#include <stdexcept>
@@ -52,6 +42,17 @@
#include "NonCopyable.hpp"
#include "Buffer.hpp"
+#ifdef __WINDOWS__
+#include <WinSock2.h>
+#include <WS2tcpip.h>
+#include <Windows.h>
+#else
+#include <unistd.h>
+#include <sys/time.h>
+#include <sys/types.h>
+#include <sys/select.h>
+#endif
+
namespace ZeroTier {
/**
@@ -150,50 +151,11 @@ private:
}
// Called in SocketManager destructor or in constructor cleanup before exception throwing
- inline void _closeSockets()
- throw()
- {
-#ifdef __WINDOWS__
- if (_whackSendPipe != INVALID_SOCKET)
- ::closesocket(_whackSendPipe);
- if (_whackReceivePipe != INVALID_SOCKET)
- ::closesocket(_whackReceivePipe);
- if (_tcpV4ListenSocket != INVALID_SOCKET)
- ::closesocket(s);
- if (_tcpV6ListenSocket != INVALID_SOCKET)
- ::closesocket(s);
-#else
- if (_whackSendPipe > 0)
- ::close(_whackSendPipe);
- if (_whackReceivePipe > 0)
- ::close(_whackReceivePipe);
- if (_tcpV4ListenSocket > 0)
- ::close(_tcpV4ListenSocket);
- if (_tcpV4ListenSocket > 0)
- ::close(_tcpV6ListenSocket);
-#endif
- }
+ void _closeSockets()
+ throw();
- inline void _updateNfds()
- {
- int nfds = _whackSendPipe;
- if (_whackReceivePipe > nfds)
- nfds = _whackReceivePipe;
- if (_tcpV4ListenSocket > nfds)
- nfds = _tcpV4ListenSocket;
- if (_tcpV6ListenSocket > nfds)
- nfds = _tcpV6ListenSocket;
- if ((_udpV4Socket)&&(_udpV4Socket->_sock > nfds))
- nfds = _udpV4Socket->_sock;
- if ((_udpV6Socket)&&(_udpV6Socket->_sock > nfds))
- nfds = _udpV6Socket->_sock;
- Mutex::Lock _l(_tcpSockets_m);
- for(std::map< InetAddress,SharedPtr<Socket> >::const_iterator s(_tcpSockets.begin());s!=_tcpSockets.end();++s) {
- if (s->second->_sock > nfds)
- nfds = s->second->_sock;
- }
- _nfds = nfds;
- }
+ // Called in SocketManager to recompute _nfds for select() based implementation
+ void _updateNfds();
#ifdef __WINDOWS__
SOCKET _whackSendPipe;