X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=src%2Fserver.hxx;h=aa0b2320370a4af437300d7b14f743eab61c1d14;hp=f3ace10d718916f1eb8ebd3f707096e117f440e5;hb=a64066eb0e456c92c4c06959616443e531d4b39d;hpb=0ea6d528901a0eeb0fce1c2a71ae69c277798142 diff --git a/src/server.hxx b/src/server.hxx index f3ace10..aa0b232 100644 --- a/src/server.hxx +++ b/src/server.hxx @@ -56,9 +56,6 @@ class server_connection : public connection void set_id(unsigned int _connection_id) { connection_id=_connection_id; } - /// vector initialized for all callback-types, all elements in each list will be called - std::vector > > callbacks; - protected: server *my_server; @@ -66,11 +63,7 @@ class server_connection : public connection std::ostream* get_logstream(log_level_values level); - void do_callbacks(callback_event_type event); - public: - virtual ~server_connection(); - void check_timeout(); void reset_timeout(); void set_timeout(int _timeout) @@ -80,8 +73,6 @@ class server_connection : public connection unsigned int get_id() { return connection_id; } - void close(); - void add_callback(callback_event_type event, const boost::function& func); };