X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fsocketengine_epoll.h;h=736a109eb177bdacf5541aedffdcecb929210b34;hb=5ee7322040d501fe55853453caa230f4550313c3;hp=f675671e2dd7d0a6b21c14eb2640aae3c430856e;hpb=d9d4f8fdadc06d86daba2879423e555519971868;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/socketengine_epoll.h b/include/socketengine_epoll.h index f675671e2..736a109eb 100644 --- a/include/socketengine_epoll.h +++ b/include/socketengine_epoll.h @@ -2,17 +2,14 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * + * 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__ @@ -45,12 +42,13 @@ public: /** 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