]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/socketengines/socketengine_select.cpp
Show IP of the user in the quit snomask [dKingston]
[user/henk/code/inspircd.git] / src / socketengines / socketengine_select.cpp
index 6965ee771f3b40114129d0d2f04dc35d54b7f0a1..f52fb08b8b4e1cd5cd801607eaa13c77c28a7d29 100644 (file)
@@ -12,7 +12,6 @@
  */
 
 #include "inspircd_config.h"
-#ifndef CONFIG_USE_IOCP
 
 #include "inspircd.h"
 #include "socketengine.h"
@@ -101,7 +100,7 @@ int SelectEngine::DispatchEvents()
        FD_ZERO(&rfdset);
        FD_ZERO(&errfdset);
 
-       /* Populate the select FD sets (this is why select sucks compared to epoll, kqueue, IOCP) */
+       /* Populate the select FD sets (this is why select sucks compared to epoll, kqueue) */
        for (unsigned int i = 0; i < FD_SETSIZE; i++)
        {
                EventHandler* eh = ref[i];
@@ -174,4 +173,3 @@ SocketEngine* CreateSocketEngine()
 {
        return new SelectEngine;
 }
-#endif