#include <omnetpp.h>
#include "TED_m.h"
#include "IntServ.h"
Go to the source code of this file.
Classes | |
class | TED |
struct | TED::vertex_t |
struct | TED::edge_t |
Functions | |
std::ostream & | operator<< (std::ostream &os, const TELinkStateInfo &info) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const TELinkStateInfo & | info | |||
) |
Definition at line 139 of file TED.cc.
{ os << "advrouter:" << info.advrouter; os << " linkid:" << info.linkid; os << " local:" << info.local; os << " remote:" << info.remote; os << " state:" << info.state; os << " metric:" << info.metric; os << " maxBW:" << info.MaxBandwidth; os << " unResvBW[7]:" << info.UnResvBandwidth[7]; // FIXME comment: what is 7 ? os << " unResvBW[4]:" << info.UnResvBandwidth[4]; // FIXME comment: what is 4 ? return os; }