]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/socketengine_kqueue.h
Add a global fake client to class InspIRCd used instead of instantiating a fake clien...
[user/henk/code/inspircd.git] / include / socketengine_kqueue.h
index 2010949ed1dd4573340e780e15df722d01f931e8..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__
@@ -49,12 +46,14 @@ public:
        /** Delete a KQueueEngine
         */
        virtual ~KQueueEngine();
-       virtual bool AddFd(int fd, bool readable, char type);
+       virtual bool AddFd(EventHandler* eh);
        virtual int GetMaxFds();
        virtual int GetRemainingFds();
-       virtual bool DelFd(int fd);
-       virtual int Wait(int* 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