summaryrefslogtreecommitdiff
path: root/src/syncConnectionCommand.cpp
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2008-04-12 11:38:42 +0000
committerOthmar Gsenger <otti@anytun.org>2008-04-12 11:38:42 +0000
commitfffd213c8cba2135afda493d797c41c10354770e (patch)
treebb5eea1b12871d8c3fed0e687d83be3e504d11b2 /src/syncConnectionCommand.cpp
parentsvn cleanup (diff)
big svn cleanup
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_;
+}