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