diff options
author | Othmar Gsenger <otti@anytun.org> | 2007-12-18 15:42:12 +0000 |
---|---|---|
committer | Othmar Gsenger <otti@anytun.org> | 2007-12-18 15:42:12 +0000 |
commit | 6b4768c54904beb09cd665a0fd4df6adcd046f19 (patch) | |
tree | 7e1014de24cf6c84f60e7a0ca09a11ab7359fe4a /syncCommand.cpp | |
parent | added Synccommand / now connection updates work / sync is multi connection ca... (diff) |
includes missing files
Diffstat (limited to 'syncCommand.cpp')
-rw-r--r-- | syncCommand.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/syncCommand.cpp b/syncCommand.cpp new file mode 100644 index 0000000..d5bb8dc --- /dev/null +++ b/syncCommand.cpp @@ -0,0 +1,16 @@ +#include "syncCommand.h" + +SyncCommand::SyncCommand(ConnectionList & cl ) +:cl_(cl) +{ +} + +SyncCommand::SyncCommand(ConnectionList & cl, u_int16_t mux ) +:cl_(cl),mux_(mux) +{ +} + +u_int16_t SyncCommand::getMux() const +{ + return mux_; +} |