repo.or.cz
/
anytun.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
big svn cleanup
[anytun.git]
/
src
/
syncConnectionCommand.cpp
blob
7f6f503fb846251cfe93f0123b1447b78870065a
1
#include
"syncConnectionCommand.h"
2
3
SyncConnectionCommand
::
SyncConnectionCommand
(
ConnectionList
&
cl
)
4
:
cl_
(
cl
)
5
{
6
}
7
8
SyncConnectionCommand
::
SyncConnectionCommand
(
ConnectionList
&
cl
,
u_int16_t mux
)
9
:
cl_
(
cl
),
mux_
(
mux
)
10
{
11
}
12
13
u_int16_t
SyncConnectionCommand
::
getMux
()
const
14
{
15
return
mux_
;
16
}