diff options
author | Othmar Gsenger <otti@anytun.org> | 2008-02-27 22:43:14 +0000 |
---|---|---|
committer | Othmar Gsenger <otti@anytun.org> | 2008-02-27 22:43:14 +0000 |
commit | 4083c982656fe3d79168b228aca56cef2de2ea0e (patch) | |
tree | 6574a170eb044ea75dd4f96cd22cb6b4c171d465 /syncRouteCommand.cpp | |
parent | added command line parameter for master key and salt (diff) |
added route syncing
Diffstat (limited to 'syncRouteCommand.cpp')
-rw-r--r-- | syncRouteCommand.cpp | 15 |
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_; +} |