libt2n: (tomj) documented code problems; have to find out if this is the source of...
[libt2n] / src / command_server.hxx
index c86b285..04508b5 100644 (file)
@@ -33,16 +33,22 @@ class command_server
 
         void handle_packet(const std::string& packet, server_connection* conn);
 
+        int guard_handle;
+
     protected:
         virtual command* cast_command(command* input)
             { return input; }
 
     public:
         command_server(server& _s);
+        // TODO: No (virtual) destructor
 
         void handle(long long usec_timeout=-1, long long* usec_timeout_remaining=NULL);
 
         void send_hello(unsigned int conn_id);
+
+        std::ostream* get_logstream(log_level_values level)
+            { return s.get_logstream(level); }
 };
 
 template<class T, class B> struct Derived_from {
@@ -50,7 +56,10 @@ template<class T, class B> struct Derived_from {
         Derived_from() { void(*p)(T*) = constraints; }
 };
 
-/// server handling group of incoming commands
+/** @brief server handling group of incoming commands
+
+    the template must be derived from libt2n::command.
+*/
 template<class COMMAND_GROUP>
 class group_command_server : public command_server
 {