summaryrefslogtreecommitdiff
path: root/syncConnectionCommand.cpp
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2008-02-27 22:43:14 +0000
committerOthmar Gsenger <otti@anytun.org>2008-02-27 22:43:14 +0000
commit4083c982656fe3d79168b228aca56cef2de2ea0e (patch)
tree6574a170eb044ea75dd4f96cd22cb6b4c171d465 /syncConnectionCommand.cpp
parentadded command line parameter for master key and salt (diff)
added route syncing
Diffstat (limited to 'syncConnectionCommand.cpp')
-rw-r--r--syncConnectionCommand.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/syncConnectionCommand.cpp b/syncConnectionCommand.cpp
new file mode 100644
index 0000000..7f6f503
--- /dev/null
+++ b/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_;
+}