Fawkes API
Fawkes Development Version
acceptor_thread.h
1
2
/***************************************************************************
3
* acceptor_thread.h - Thread accepting network connections
4
*
5
* Created: Fri Nov 17 13:57:14 2006
6
* Copyright 2006-2007 Tim Niemueller [www.niemueller.de]
7
*
8
****************************************************************************/
9
10
/* This program is free software; you can redistribute it and/or modify
11
* it under the terms of the GNU General Public License as published by
12
* the Free Software Foundation; either version 2 of the License, or
13
* (at your option) any later version. A runtime exception applies to
14
* this software (see LICENSE.GPL_WRE file mentioned below for details).
15
*
16
* This program is distributed in the hope that it will be useful,
17
* but WITHOUT ANY WARRANTY; without even the implied warranty of
18
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
* GNU Library General Public License for more details.
20
*
21
* Read the full text in the LICENSE.GPL_WRE file in the doc directory.
22
*/
23
24
#ifndef _NETCOMM_UTILS_ACCEPTOR_THREAD_H_
25
#define _NETCOMM_UTILS_ACCEPTOR_THREAD_H_
26
27
#include <core/threading/thread.h>
28
#include <netcomm/socket/socket.h>
29
30
#include <string>
31
32
namespace
fawkes
{
33
34
class
StreamSocket;
35
class
NetworkIncomingConnectionHandler;
36
37
class
NetworkAcceptorThread
:
public
Thread
38
{
39
public
:
40
NetworkAcceptorThread
(
NetworkIncomingConnectionHandler
*handler,
41
unsigned
short
int
port,
42
const
char
* thread_name =
"NetworkAcceptorThread"
);
43
NetworkAcceptorThread
(
NetworkIncomingConnectionHandler
*handler,
44
Socket::AddrType
addr_type,
45
const
std::string & listen_addr,
46
unsigned
short
int
port,
47
const
char
* thread_name =
"NetworkAcceptorThread"
);
48
NetworkAcceptorThread
(
NetworkIncomingConnectionHandler
*handler,
49
StreamSocket
* socket,
50
const
char
* thread_name =
"NetworkAcceptorThread"
);
51
~NetworkAcceptorThread
();
52
53
virtual
void
loop
();
54
55
/** Stub to see name in backtrace for easier debugging. @see Thread::run() */
56
protected
:
57
virtual
void
58
run
()
59
{
60
Thread::run
();
61
}
62
63
private
:
64
unsigned
short
int
port_;
65
StreamSocket
* socket_;
66
67
NetworkIncomingConnectionHandler
*handler_;
68
};
69
70
}
// end namespace fawkes
71
72
#endif
fawkes::NetworkAcceptorThread::run
virtual void run()
Stub to see name in backtrace for easier debugging.
Definition:
acceptor_thread.h:58
fawkes::NetworkAcceptorThread::~NetworkAcceptorThread
~NetworkAcceptorThread()
Destructor.
Definition:
acceptor_thread.cpp:124
fawkes::NetworkAcceptorThread::loop
virtual void loop()
Thread loop.
Definition:
acceptor_thread.cpp:134
fawkes
Fawkes library namespace.
fawkes::NetworkAcceptorThread::NetworkAcceptorThread
NetworkAcceptorThread(NetworkIncomingConnectionHandler *handler, unsigned short int port, const char *thread_name="NetworkAcceptorThread")
Constructor.
Definition:
acceptor_thread.cpp:45
fawkes::NetworkAcceptorThread
Network Acceptor Thread.
Definition:
acceptor_thread.h:38
fawkes::Thread::run
virtual void run()
Code to execute in the thread.
Definition:
thread.cpp:918
fawkes::Thread
Thread class encapsulation of pthreads.
Definition:
thread.h:46
fawkes::NetworkIncomingConnectionHandler
Interface for handling incoming connections.
Definition:
incoming_connection_handler.h:32
fawkes::StreamSocket
TCP stream socket over IP.
Definition:
stream.h:32
fawkes::Socket::AddrType
AddrType
Address type specification.
Definition:
socket.h:75
src
libs
netcomm
utils
acceptor_thread.h
Generated by
1.8.20