summaryrefslogtreecommitdiff
path: root/syncRouteCommand.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 /syncRouteCommand.cpp
parentadded command line parameter for master key and salt (diff)
added route syncing
Diffstat (limited to 'syncRouteCommand.cpp')
-rw-r--r--syncRouteCommand.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/syncRouteCommand.cpp b/syncRouteCommand.cpp
new file mode 100644
index 0000000..7ba6a18
--- /dev/null
+++ b/syncRouteCommand.cpp
@@ -0,0 +1,15 @@
+#include "syncRouteCommand.h"
+
+SyncRouteCommand::SyncRouteCommand()
+{
+}
+
+SyncRouteCommand::SyncRouteCommand( u_int16_t mux )
+:mux_(mux)
+{
+}
+
+u_int16_t SyncRouteCommand::getMux() const
+{
+ return mux_;
+}