summaryrefslogtreecommitdiff
path: root/src/socketengine_iocp.cpp
diff options
context:
space:
mode:
authorburlex <burlex@e03df62e-2008-0410-955e-edbf42e46eb7>2007-07-23 00:37:03 +0000
committerburlex <burlex@e03df62e-2008-0410-955e-edbf42e46eb7>2007-07-23 00:37:03 +0000
commit480e1e9e1ff6c39a154f3efc6e83b0ffc94a6c8d (patch)
tree3df6571bceabfe0d5b24e8a8aaafe7f1af3882d0 /src/socketengine_iocp.cpp
parent3e5634346e5a0fa18d727079e88432e9a7aa0ec0 (diff)
* Sockets will now always be nonblocking on win32 version of InspIRCd. There were some cases (mainly in TreeSockets) where a socket would not get restored to nonblocking mode after a connect() call, resulting in the server getting stuck on a blocking send() call causing freezeups.
* configure will now compile under VC7 again. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7500 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/socketengine_iocp.cpp')
-rw-r--r--src/socketengine_iocp.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/socketengine_iocp.cpp b/src/socketengine_iocp.cpp
index ff1c7a0bc..c5c589e5f 100644
--- a/src/socketengine_iocp.cpp
+++ b/src/socketengine_iocp.cpp
@@ -333,7 +333,19 @@ void IOCPEngine::PostAcceptEvent(EventHandler * eh)
if (!eh)
return;
+ int on = 1;
+ u_long arg = 1;
+ struct linger linger = { 0 };
+
int fd = WSASocket(AF_INET, SOCK_STREAM, 0, 0, 0, WSA_FLAG_OVERLAPPED);
+
+ setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, (char*)&on, sizeof(on));
+ /* This is BSD compatible, setting l_onoff to 0 is *NOT* http://web.irc.org/mla/ircd-dev/msg02259.html */
+ linger.l_onoff = 1;
+ linger.l_linger = 1;
+ setsockopt(fd, SOL_SOCKET, SO_LINGER, (char*)&linger,sizeof(linger));
+ ioctlsocket(fd, FIONBIO, &arg);
+
int len = sizeof(sockaddr_in) + 16;
DWORD dwBytes;
accept_overlap* ao = new accept_overlap;