1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/* tnt/listener.h
* Copyright (C) 2003 Tommi Maekitalo
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* is provided AS IS, WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, and
* NON-INFRINGEMENT. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifndef TNT_LISTENER_H
#define TNT_LISTENER_H
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <cxxtools/thread.h>
#include "tnt/job.h"
namespace tnt
{
class ListenerBase : public cxxtools::AttachedThread
{
std::string ipaddr;
unsigned short int port;
public:
ListenerBase(const std::string& ipaddr_, unsigned short int port_)
: ipaddr(ipaddr_),
port(port_)
{ }
void doStop();
};
class Listener : public ListenerBase
{
cxxtools::net::Server server;
Jobqueue& queue;
static int backlog;
static unsigned listenRetry;
public:
Listener(const std::string& ipaddr, unsigned short int port, Jobqueue& q);
virtual void run();
static void setBacklog(int backlog_) { backlog = backlog_; }
static int getBacklog() { return backlog; }
static void setListenRetry(unsigned listenRetry_) { listenRetry = listenRetry_; }
static unsigned getListenRetry() { return listenRetry; }
};
#ifdef USE_SSL
class Ssllistener : public ListenerBase
{
SslServer server;
Jobqueue& queue;
public:
Ssllistener(const char* certificateFile, const char* keyFile,
const std::string& ipaddr, unsigned short int port, Jobqueue& q);
virtual void run();
};
#endif // USE_SSL
}
#endif // TNT_LISTENER_H
|