]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/socketengines/socketengine_iocp.h
Replace loopCall detection in OnUserKick with a check for the m_spanningtree fake...
[user/henk/code/inspircd.git] / include / socketengines / socketengine_iocp.h
index 80689017c2c9e9323eb62a2048b939389299b078..302fdbd2ce24e0c85e8c073d9614e8f79a7a46d5 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *         the file COPYING for details.
@@ -103,12 +103,12 @@ class IOCPEngine : public SocketEngine
                }
                return -1;
        }
-       
+
        /** Global I/O completion port that sockets attach to.
         */
        HANDLE m_completionPort;
 
-       /** This is kinda shitty... :/ for getting an address from a real fd. 
+       /** This is kinda shitty... :/ for getting an address from a real fd.
         */
        std::map<int, EventHandler*> m_binding;
 
@@ -144,7 +144,7 @@ public:
        __inline int GetRemainingFds()
        {
                register int count = 0;
-               register int i = 0;                     
+               register int i = 0;
                for(; i < MAX_DESCRIPTORS; ++i)
                        if(ref[i] == 0)
                                ++count;
@@ -238,4 +238,3 @@ public:
 };
 
 #endif
-