Belle II Software
release-05-02-19
Main Page
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Typedefs
a
b
c
d
e
h
i
l
m
n
p
r
s
t
v
w
Enumerations
Enumerator
c
d
f
p
t
u
v
w
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
Enumerator
a
b
c
d
e
f
g
h
k
l
m
n
o
p
r
s
t
u
v
w
z
Related Functions
b
c
d
g
i
o
r
s
t
Files
File List
File Members
All
Functions
TCPServerSocket.h
1
#ifndef _B2ARICH_TCPServerSocket_hh_
2
#define _B2ARICH_TCPServerSocket_hh_
3
4
#include "daq/slc/system/TCPSocket.h"
5
#include "daq/slc/system/FileDescriptor.h"
6
7
namespace
Belle2
{
13
class
TCPServerSocket
:
public
FileDescriptor
{
14
15
public
:
16
TCPServerSocket
()
17
: m_ip(
""
), m_port(0) {}
18
TCPServerSocket
(
const
std::string& ip,
unsigned
short
port)
19
: m_ip(ip), m_port(port) {}
20
virtual
~
TCPServerSocket
() {}
21
22
public
:
23
void
setIP(
const
std::string& ip) { m_ip = ip; }
24
void
setPort(
unsigned
short
port) { m_port = port; }
25
const
std::string& getIP()
const
{
return
m_ip; }
26
unsigned
short
getPort()
const
{
return
m_port; }
27
int
open(
int
nqueue = 5);
28
int
open(
const
std::string& ip,
unsigned
short
port,
int
nqueue = 5);
29
TCPSocket
accept();
30
31
private
:
32
std::string m_ip;
33
unsigned
short
m_port;
34
35
};
36
38
}
39
40
#endif
41
Belle2
Abstract base class for different kinds of events.
Definition:
MillepedeAlgorithm.h:19
Belle2::TCPServerSocket
Definition:
TCPServerSocket.h:13
Belle2::TCPSocket
Definition:
TCPSocket.h:14
Belle2::FileDescriptor
Definition:
FileDescriptor.h:10
daq
slc
system
include
TCPServerSocket.h
Generated on Tue Jan 4 2022 02:54:37 for Belle II Software by
1.8.17