summaryrefslogtreecommitdiff
path: root/src/syncConnectionCommand.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/syncConnectionCommand.cpp')
-rw-r--r--src/syncConnectionCommand.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/syncConnectionCommand.cpp b/src/syncConnectionCommand.cpp
new file mode 100644
index 0000000..7f6f503
--- /dev/null
+++ b/src/syncConnectionCommand.cpp
@@ -0,0 +1,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_;
+}