X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=src%2Fserver.hxx;h=601329cc3d3aff9ccbffea9ac179db9fc208beb2;hp=172e98e75958148902e414a75183d445f6ecc829;hb=04d86ba4ad4f14ab08f38804e772ec46a8ac92b0;hpb=a7170401dd90dc79cc7d7a808cfe18a06c7e983b diff --git a/src/server.hxx b/src/server.hxx index 172e98e..601329c 100644 --- a/src/server.hxx +++ b/src/server.hxx @@ -22,6 +22,10 @@ #include #include #include +#include +#include + +#include #include "connection.hxx" #include "types.hxx" @@ -52,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; @@ -59,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) @@ -68,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); }; /** @@ -82,6 +97,9 @@ class server log_level_values log_level; std::ostream *logstream; + /// vector initialized for all callback-types, all elements in each list will be called + std::vector > > callbacks; + unsigned int next_id; protected: @@ -93,6 +111,8 @@ class server int add_connection(server_connection* newconn); + void do_callbacks(callback_event_type event, unsigned int conn_id); + public: virtual ~server(); @@ -108,6 +128,8 @@ class server server_connection* get_connection(unsigned int conn_id); + void add_callback(callback_event_type event, const boost::function& func); + /** @brief look for new data on all open connections, accept new connections @param usec_timeout wait until new data is found, max timeout usecs. -1: wait endless