#include <omnetpp.h>
#include "TED_m.h"
#include "IntServ.h"
Functions | |
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 }
|