summaryrefslogtreecommitdiff
path: root/include/socketengine_kqueue.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-12 01:13:40 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-12 01:13:40 +0000
commitd9d4f8fdadc06d86daba2879423e555519971868 (patch)
treedb6712922d926535006921649488e1bab9c93156 /include/socketengine_kqueue.h
parent787020a2d719a3becb6bcca1ad6b0df86c528888 (diff)
Document some missing xline stuff
Document the variants of SocketEngine for epoll, kqueue and select git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4905 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/socketengine_kqueue.h')
-rw-r--r--include/socketengine_kqueue.h19
1 files changed, 17 insertions, 2 deletions
diff --git a/include/socketengine_kqueue.h b/include/socketengine_kqueue.h
index d7451b642..2010949ed 100644
--- a/include/socketengine_kqueue.h
+++ b/include/socketengine_kqueue.h
@@ -30,13 +30,24 @@
class InspIRCd;
+/** A specialisation of the SocketEngine class, designed to use FreeBSD kqueue().
+ */
class KQueueEngine : public SocketEngine
{
private:
- struct kevent ke_list[MAX_DESCRIPTORS]; /* Up to 64k sockets for kqueue */
- struct timespec ts; /* kqueue delay value */
+ /** These are used by kqueue() to hold socket events
+ */
+ struct kevent ke_list[MAX_DESCRIPTORS];
+ /** This is a specialised time value used by kqueue()
+ */
+ struct timespec ts;
public:
+ /** Create a new KQueueEngine
+ * @param Instance The creator of this object
+ */
KQueueEngine(InspIRCd* Instance);
+ /** Delete a KQueueEngine
+ */
virtual ~KQueueEngine();
virtual bool AddFd(int fd, bool readable, char type);
virtual int GetMaxFds();
@@ -46,9 +57,13 @@ public:
virtual std::string GetName();
};
+/** Creates a SocketEngine
+ */
class SocketEngineFactory
{
public:
+ /** Create a new instance of SocketEngine based on KQueueEngine
+ */
SocketEngine* Create(InspIRCd* Instance) { return new KQueueEngine(InspIRCd* Instance); }
};