#include <omnetpp.h>
#include <algorithm>
#include "TED.h"
#include "IPControlInfo.h"
#include "IPv4InterfaceData.h"
#include "NotifierConsts.h"
#include "RoutingTableAccess.h"
#include "InterfaceTableAccess.h"
#include "NotificationBoard.h"
Defines | |
#define | LS_INFINITY 1e16 |
Functions | |
Define_Module (TED) | |
std::ostream & | operator<< (std::ostream &os, const TELinkStateInfo &info) |
#define LS_INFINITY 1e16 |
Define_Module | ( | TED | ) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const TELinkStateInfo & | info | |||
) |
00140 { 00141 os << "advrouter:" << info.advrouter; 00142 os << " linkid:" << info.linkid; 00143 os << " local:" << info.local; 00144 os << " remote:" << info.remote; 00145 os << " state:" << info.state; 00146 os << " metric:" << info.metric; 00147 os << " maxBW:" << info.MaxBandwidth; 00148 os << " unResvBW[7]:" << info.UnResvBandwidth[7]; // FIXME comment: what is 7 ? 00149 os << " unResvBW[4]:" << info.UnResvBandwidth[4]; // FIXME comment: what is 4 ? 00150 00151 return os; 00152 }