]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/socketengine_epoll.h
Reduce size of max number of bytes in a bitfield from a 4 or 8 byte field to a 1...
[user/henk/code/inspircd.git] / include / socketengine_epoll.h
index 65d1150f73824fbfe4cbb1d0289ed03b44f8f8ba..5eb69cf650f8b2bcf1fbb8429174f870355daaab 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();
+       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); }
 };