documentation

This commit is contained in:
john30
2015-03-14 10:20:54 +01:00
parent da6149f764
commit dbd380eca5
+4 -4
View File
@@ -238,16 +238,16 @@ public:
void stop() const { m_notify.notify(); usleep(100000); } void stop() const { m_notify.notify(); usleep(100000); }
private: private:
/** container for active connections */ /** the list of active @a Connection instances. */
list<Connection*> m_connections; list<Connection*> m_connections;
/** remote queue for network messages */ /** the @a MainLoop queue for transferring @a NetMessage instances. */
WQueue<NetMessage*>* m_netQueue; WQueue<NetMessage*>* m_netQueue;
/** the tcp server instance */ /** the @a TCPServer instance. */
TCPServer* m_tcpServer; TCPServer* m_tcpServer;
/** notification object for shutdown procedure */ /** @a Notify object for shutdown procedure. */
Notify m_notify; Notify m_notify;
/** true if this instance is listening */ /** true if this instance is listening */