RINASim  October 2016
Documentation of framework for OMNeT++
TOR_Routing.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "IntDCRouting.h"
4 
5 
6 namespace NSPSimpleDC {
7 
8  class TOR_Routing : public IntDCRouting {
9  void activeNeigh(const DCAddr &dst);
10  void inactiveNeigh(const DCAddr &dst);
11  void startMyLinks();
12 
13  set<DCAddr> getNotOptimalDst(map<DCAddr, tableNode> * table);
14 
15  void printAtEnd();
16  };
17 
18 }
void activeNeigh(const DCAddr &dst)
Definition: TOR_Routing.cc:9
set< DCAddr > getNotOptimalDst(map< DCAddr, tableNode > *table)
Definition: TOR_Routing.cc:59
void inactiveNeigh(const DCAddr &dst)
Definition: TOR_Routing.cc:34