From 8eb405767d509b3625ccbdf2474722c0dd566f6e Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 15 Aug 2007 21:25:58 +0000 Subject: This is now correct. No win32 #ifdefs in the base class, being as IOCPEngine is only built on windows we can put the code here without the need for ifdef. The original check in socketengine_iocp was broken, copied burlex's fixed version into the child class git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7724 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/socketengine.cpp | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'src/socketengine.cpp') diff --git a/src/socketengine.cpp b/src/socketengine.cpp index 3aef464e6..28ba8c252 100644 --- a/src/socketengine.cpp +++ b/src/socketengine.cpp @@ -93,24 +93,10 @@ std::string SocketEngine::GetName() bool SocketEngine::BoundsCheckFd(EventHandler* eh) { -#ifdef WINDOWS - int * internal_fd; - if(!eh || eh->GetFd() < 0) - return false; - - if(!eh->GetExt("internal_fd", internal_fd)) - return false; - - if(*internal_fd > MAX_DESCRIPTORS) - return false; - - return true; -#else if (!eh) return false; if ((eh->GetFd() < 0) || (eh->GetFd() > MAX_DESCRIPTORS)) return false; return true; -#endif } -- cgit v1.3.1-10-gc9f91