blob: d5bb8dc30bc80a97d128e6384cb36859e3704f87 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "syncCommand.h"
SyncCommand::SyncCommand(ConnectionList & cl )
:cl_(cl)
{
}
SyncCommand::SyncCommand(ConnectionList & cl, u_int16_t mux )
:cl_(cl),mux_(mux)
{
}
u_int16_t SyncCommand::getMux() const
{
return mux_;
}
|