diff options
author | Othmar Gsenger <otti@anytun.org> | 2008-02-22 20:07:08 +0000 |
---|---|---|
committer | Othmar Gsenger <otti@anytun.org> | 2008-02-22 20:07:08 +0000 |
commit | 60ea765c61f6721e812df5ab615c14edbe4d3f03 (patch) | |
tree | 96c4f2cd72e31b583c616a9366d59e369761b5f6 /router.h | |
parent | fixed bug with secure memory (don't activate authentication!) (diff) |
added routing table basic structure
Diffstat (limited to 'router.h')
-rw-r--r-- | router.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -35,6 +35,7 @@ #include "datatypes.h" #include "connectionParam.h" #include "connectionList.h" +#include "routingTable.h" class Router { @@ -48,6 +49,7 @@ private: Router(const Router &s); void operator=(const Router &s); ConnectionList& con_list_; + RoutingTable rt_; Mutex mutex_; }; |