summaryrefslogtreecommitdiff
path: root/router.h
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2008-02-22 20:07:08 +0000
committerOthmar Gsenger <otti@anytun.org>2008-02-22 20:07:08 +0000
commit60ea765c61f6721e812df5ab615c14edbe4d3f03 (patch)
tree96c4f2cd72e31b583c616a9366d59e369761b5f6 /router.h
parentfixed bug with secure memory (don't activate authentication!) (diff)
added routing table basic structure
Diffstat (limited to 'router.h')
-rw-r--r--router.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/router.h b/router.h
index dd8a2b9..8d914c2 100644
--- a/router.h
+++ b/router.h
@@ -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_;
};