Fawkes API
Fawkes Development Version
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
All
Classes
Namespaces
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Groups
Pages
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
29
namespace
fawkes {
30
31
class
StreamSocket;
32
class
NetworkIncomingConnectionHandler;
33
34
class
NetworkAcceptorThread
:
public
Thread
35
{
36
public
:
37
NetworkAcceptorThread
(
NetworkIncomingConnectionHandler
*handler,
38
unsigned
short
int
port,
39
const
char
*thread_name =
"NetworkAcceptorThread"
);
40
NetworkAcceptorThread
(
NetworkIncomingConnectionHandler
*handler,
41
StreamSocket
*socket,
42
const
char
*thread_name =
"NetworkAcceptorThread"
);
43
~NetworkAcceptorThread
();
44
45
virtual
void
loop
();
46
47
/** Stub to see name in backtrace for easier debugging. @see Thread::run() */
48
protected
:
virtual
void
run
() {
Thread::run
(); }
49
50
private
:
51
unsigned
short
int
__port;
52
StreamSocket
*__socket;
53
54
NetworkIncomingConnectionHandler
*__handler;
55
56
};
57
58
}
// end namespace fawkes
59
60
#endif
src
libs
netcomm
utils
acceptor_thread.h
Generated by
1.8.3.1