]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/socketengine_epoll.h
Wahhhhhhhhhhhh bwahahaha. Mass commit to tidy up tons of messy include lists
[user/henk/code/inspircd.git] / include / socketengine_epoll.h
index 65d1150f73824fbfe4cbb1d0289ed03b44f8f8ba..8e4d6308fb2d566152d99c8b70fea8fa9b04fde2 100644 (file)
 
 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);
+       virtual int DispatchEvents();
        virtual std::string GetName();
 };
 
+/** Creates a SocketEngine
+ */
 class SocketEngineFactory
 {
 public:
+       /** Create a new instance of SocketEngine based on EpollEngine
+        */
        SocketEngine* Create(InspIRCd* Instance) { return new EPollEngine(Instance); }
 };