libt2n: (gerd) finish server callbacks
[libt2n] / src / command_server.hxx
CommitLineData
7087e187
GE
1/***************************************************************************
2 * Copyright (C) 2006 by Gerd v. Egidy *
3 * gve@intra2net.com *
4 * *
5 * This library is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU Lesser General Public License version *
7 * 2.1 as published by the Free Software Foundation. *
8 * *
9 * This library is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU Lesser General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU Lesser General Public *
15 * License along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
18 ***************************************************************************/
19#ifndef __LIBT2N_COMMAND_SERVER
20#define __LIBT2N_COMMAND_SERVER
21
22#include "server.hxx"
23
24namespace libt2n
25{
26
27/// a server handling incoming commands
28class command_server
29{
30 private:
31 server& s;
32
33 void handle_packet(const std::string& packet, server_connection* conn);
34
35 public:
28cb45a5 36 command_server(server& _s);
7087e187
GE
37
38 void handle(long long usec_timeout=-1);
28cb45a5 39
6cda58a6 40 void new_connection_callback(unsigned int conn_id);
7087e187
GE
41};
42
43}
44
45#endif
46