libt2n: (gerd) fix client-connection-logic, finish wrappers, all tests are working...
[libt2n] / src / client.cpp
CommitLineData
a11e19b7
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
20#include <sstream>
21
22#include "client.hxx"
23
24namespace libt2n
25{
26
a7170401 27client_connection::client_connection()
a64066eb 28 : connection()
a7170401
GE
29{
30 set_logging(NULL,none);
31}
32
33/// get pointer to logging stream, returns NULL if no logging needed
34std::ostream* client_connection::get_logstream(log_level_values level)
35{
d535333f 36 if (logstream && log_level >= level)
a7170401 37 return logstream;
d535333f
GE
38 else
39 return NULL;
a7170401
GE
40}
41
42/// activate logging to the given stream. everything above the given level is logged.
43void client_connection::set_logging(std::ostream *_logstream, log_level_values _log_level)
44{
45 log_level=_log_level;
46 logstream=_logstream;
47}
a11e19b7
GE
48
49};