diff --git a/src/ebusd/network.h b/src/ebusd/network.h index ec70e3f0..875e3c42 100644 --- a/src/ebusd/network.h +++ b/src/ebusd/network.h @@ -238,16 +238,16 @@ public: void stop() const { m_notify.notify(); usleep(100000); } private: - /** container for active connections */ + /** the list of active @a Connection instances. */ list m_connections; - /** remote queue for network messages */ + /** the @a MainLoop queue for transferring @a NetMessage instances. */ WQueue* m_netQueue; - /** the tcp server instance */ + /** the @a TCPServer instance. */ TCPServer* m_tcpServer; - /** notification object for shutdown procedure */ + /** @a Notify object for shutdown procedure. */ Notify m_notify; /** true if this instance is listening */