summaryrefslogtreecommitdiff
path: root/include/socketengine_ports.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/socketengine_ports.h')
-rw-r--r--include/socketengine_ports.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/socketengine_ports.h b/include/socketengine_ports.h
index 84b57e3fd..a5951a138 100644
--- a/include/socketengine_ports.h
+++ b/include/socketengine_ports.h
@@ -26,11 +26,10 @@
#include "inspircd.h"
#include "socketengine.h"
#include <port.h>
-#define EP_DELAY 5
class InspIRCd;
-/** A specialisation of the SocketEngine class, designed to use linux 2.6 epoll().
+/** A specialisation of the SocketEngine class, designed to use solaris 10 I/O completion ports
*/
class PortsEngine : public SocketEngine
{
@@ -39,11 +38,11 @@ private:
*/
port_event_t events[MAX_DESCRIPTORS];
public:
- /** Create a new EPollEngine
+ /** Create a new PortsEngine
* @param Instance The creator of this object
*/
PortsEngine(InspIRCd* Instance);
- /** Delete an EPollEngine
+ /** Delete a PortsEngine
*/
virtual ~PortsEngine();
virtual bool AddFd(EventHandler* eh);
@@ -66,3 +65,4 @@ public:
};
#endif
+