X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=src%2Fserver.hxx;h=f3ace10d718916f1eb8ebd3f707096e117f440e5;hp=aca705bbf375b8f61b03f8f0bee0eaac5d084623;hb=refs%2Ftags%2Fv0.2;hpb=28cb45a5725e9c6054d7048a9bf969b9f2c94d64 diff --git a/src/server.hxx b/src/server.hxx index aca705b..f3ace10 100644 --- a/src/server.hxx +++ b/src/server.hxx @@ -56,6 +56,9 @@ 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; @@ -63,7 +66,11 @@ 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) @@ -72,6 +79,10 @@ class server_connection : public connection /// get the id of this connection within the server object unsigned int get_id() { return connection_id; } + + void close(); + + void add_callback(callback_event_type event, const boost::function& func); }; /** @@ -87,7 +98,7 @@ class server std::ostream *logstream; /// vector initialized for all callback-types, all elements in each list will be called - std::vector > > callbacks; + std::vector > > callbacks; unsigned int next_id; @@ -100,7 +111,7 @@ class server int add_connection(server_connection* newconn); - void do_callbacks(callback_event_type event, server_connection* conn); + void do_callbacks(callback_event_type event, unsigned int conn_id); public: virtual ~server(); @@ -117,16 +128,18 @@ class server server_connection* get_connection(unsigned int conn_id); - void add_callback(callback_event_type event, const boost::function& func); + void add_callback(callback_event_type event, const boost::function& func); - /** @brief look for new data on all open connections, accept new connections + /** @brief look for new data and store it in the local buffer @param usec_timeout wait until new data is found, max timeout usecs. -1: wait endless - NULL: no timeout + 0: return instantly + @param usec_timeout_remaining if non-NULL the function will write the + not used time to the given target @retval true if new data was found (does not mean that the received data is a complete packet though) */ - virtual bool fill_buffer(long long usec_timeout=-1)=0; + virtual bool fill_buffer(long long usec_timeout=-1, long long* timeout_remaining=NULL)=0; void cleanup();