]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/socketengine_kqueue.h
Penalty should be 'const int'. Note, you can set a const in the constructors init...
[user/henk/code/inspircd.git] / include / socketengine_kqueue.h
index 3928436972e0d5c9f6ac28bae89328c2f812459f..c34075cd2d83ba0a768645cc448048f38c8b8b40 100644 (file)
@@ -2,17 +2,14 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
- *                       E-mail:
- *                <brain@chatspike.net>
- *                <Craig@chatspike.net>
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
  *
- * Written by Craig Edwards, Craig McLure, and others.
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
  * ---------------------------------------------------
-*/
+ */
 
 #ifndef __SOCKETENGINE_KQUEUE__
 #define __SOCKETENGINE_KQUEUE__
@@ -52,9 +49,11 @@ public:
        virtual bool AddFd(EventHandler* eh);
        virtual int GetMaxFds();
        virtual int GetRemainingFds();
-       virtual bool DelFd(EventHandler* eh);
-       virtual int Wait(EventHandler** fdlist);
+       virtual bool DelFd(EventHandler* eh, bool force = false);
+       virtual int DispatchEvents();
        virtual std::string GetName();
+       virtual void WantWrite(EventHandler* eh);
+       virtual void RecoverFromFork();
 };
 
 /** Creates a SocketEngine
@@ -64,7 +63,7 @@ class SocketEngineFactory
  public:
        /** Create a new instance of SocketEngine based on KQueueEngine
         */
-       SocketEngine* Create(InspIRCd* Instance) { return new KQueueEngine(InspIRCd* Instance); }
+       SocketEngine* Create(InspIRCd* Instance) { return new KQueueEngine(Instance); }
 };
 
 #endif