]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/socketengine_epoll.h
Provide error output on failure to load a core command; to console on startup, and...
[user/henk/code/inspircd.git] / include / socketengine_epoll.h
index 65d1150f73824fbfe4cbb1d0289ed03b44f8f8ba..736a109eb177bdacf5541aedffdcecb929210b34 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_EPOLL__
 #define __SOCKETENGINE_EPOLL__
 
 class InspIRCd;
 
+/** A specialisation of the SocketEngine class, designed to use linux 2.6 epoll().
+ */
 class EPollEngine : public SocketEngine
 {
 private:
-       struct epoll_event events[MAX_DESCRIPTORS];     /* Up to 64k sockets for epoll */
+       /** These are used by epoll() to hold socket events
+        */
+       struct epoll_event events[MAX_DESCRIPTORS];
 public:
+       /** Create a new EPollEngine
+        * @param Instance The creator of this object
+        */
        EPollEngine(InspIRCd* Instance);
+       /** Delete an EPollEngine
+        */
        virtual ~EPollEngine();
-       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);
 };
 
+/** Creates a SocketEngine
+ */
 class SocketEngineFactory
 {
 public:
+       /** Create a new instance of SocketEngine based on EpollEngine
+        */
        SocketEngine* Create(InspIRCd* Instance) { return new EPollEngine(Instance); }
 };