]> 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 ddb738fb93f3ecda583e6b3406b134930386f7fa..736a109eb177bdacf5541aedffdcecb929210b34 100644 (file)
@@ -1 +1,64 @@
-/*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r#ifndef __SOCKETENGINE_EPOLL__\r#define __SOCKETENGINE_EPOLL__\r\r#include <vector>\r#include <string>\r#include <map>\r#include "inspircd_config.h"\r#include "globals.h"\r#include "inspircd.h"\r#include "socketengine.h"\r#include <sys/epoll.h>\r#define EP_DELAY 5\r\rclass InspIRCd;\r\r/** A specialisation of the SocketEngine class, designed to use linux 2.6 epoll().\r */\rclass EPollEngine : public SocketEngine\r{\rprivate:\r /** These are used by epoll() to hold socket events\r     */\r    struct epoll_event events[MAX_DESCRIPTORS];\rpublic:\r    /** Create a new EPollEngine\r    * @param Instance The creator of this object\r   */\r    EPollEngine(InspIRCd* Instance);\r       /** Delete an EPollEngine\r       */\r    virtual ~EPollEngine();\r        virtual bool AddFd(EventHandler* eh);\r  virtual int GetMaxFds();\r       virtual int GetRemainingFds();\r virtual bool DelFd(EventHandler* eh, bool force = false);\r      virtual int DispatchEvents();\r  virtual std::string GetName();\r virtual void WantWrite(EventHandler* eh);\r};\r\r/** Creates a SocketEngine\r */\rclass SocketEngineFactory\r{\rpublic:\r       /** Create a new instance of SocketEngine based on EpollEngine\r  */\r    SocketEngine* Create(InspIRCd* Instance) { return new EPollEngine(Instance); }\r};\r\r#endif\r
\ No newline at end of file
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
+ * See: http://www.inspircd.org/wiki/index.php/Credits
+ *
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
+#ifndef __SOCKETENGINE_EPOLL__
+#define __SOCKETENGINE_EPOLL__
+
+#include <vector>
+#include <string>
+#include <map>
+#include "inspircd_config.h"
+#include "globals.h"
+#include "inspircd.h"
+#include "socketengine.h"
+#include <sys/epoll.h>
+#define EP_DELAY 5
+
+class InspIRCd;
+
+/** A specialisation of the SocketEngine class, designed to use linux 2.6 epoll().
+ */
+class EPollEngine : public SocketEngine
+{
+private:
+       /** 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(EventHandler* eh);
+       virtual int GetMaxFds();
+       virtual int GetRemainingFds();
+       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); }
+};
+
+#endif