1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2009 InspIRCd Development Team
6 * See: http://wiki.inspircd.org/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
14 #ifndef __SOCKETENGINE_PORTS__
15 #define __SOCKETENGINE_PORTS__
18 # error You need Solaris 10 or later to make use of this code.
24 #include "inspircd_config.h"
26 #include "socketengine.h"
31 /** A specialisation of the SocketEngine class, designed to use solaris 10 I/O completion ports
33 class PortsEngine : public SocketEngine
36 /** These are used by epoll() to hold socket events
40 /** Create a new PortsEngine
41 * @param Instance The creator of this object
43 PortsEngine(InspIRCd* Instance);
44 /** Delete a PortsEngine
46 virtual ~PortsEngine();
47 virtual bool AddFd(EventHandler* eh);
48 virtual int GetMaxFds();
49 virtual int GetRemainingFds();
50 virtual bool DelFd(EventHandler* eh, bool force = false);
51 virtual int DispatchEvents();
52 virtual std::string GetName();
53 virtual void WantWrite(EventHandler* eh);
56 /** Creates a SocketEngine
58 class SocketEngineFactory
61 /** Create a new instance of SocketEngine based on PortsEngine
63 SocketEngine* Create(InspIRCd* Instance) { return new PortsEngine(Instance); }