summaryrefslogtreecommitdiff
path: root/include/socket.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-18 19:18:43 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-08-18 19:18:43 +0000
commita2d8fbc45df57e2063f77a34f6fd88a73087555d (patch)
tree10083fd2c868dd0b5623656911df6b0aabd0be93 /include/socket.h
parented3adc710cc7131b3434949e4675a657ed2e3840 (diff)
Document ListenSocket class
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4968 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/socket.h')
-rw-r--r--include/socket.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/socket.h b/include/socket.h
index c00c7f131..f868daf92 100644
--- a/include/socket.h
+++ b/include/socket.h
@@ -138,12 +138,22 @@ namespace irc
};
};
+/** This class handles incoming connections on client ports.
+ * It will create a new userrec for every valid connection
+ * and assign it a file descriptor.
+ */
class ListenSocket : public EventHandler
{
protected:
+ /** The creator/owner of this object
+ */
InspIRCd* ServerInstance;
public:
+ /** Create a new listening socket
+ */
ListenSocket(InspIRCd* Instance, int sockfd, irc::sockets::insp_sockaddr client, irc::sockets::insp_sockaddr server, int port, char* addr);
+ /** Handle an I/O event
+ */
void HandleEvent(EventType et);
};