#include <sstream>
#include "SimpleNodeEntry.h"
#include "IPAddressResolver.h"
Functions | |
std::ostream & | operator<< (std::ostream &out, const SimpleNodeEntry &entry) |
std::ostream& operator<< | ( | std::ostream & | out, | |
const SimpleNodeEntry & | entry | |||
) |
out | output stream | |
entry | the terminal |
00172 { 00173 out << "(x:" << entry.nodeRecord->coords[0] 00174 << ", y:" << entry.nodeRecord->coords[1] 00175 << ")\nbandwidth = " << entry.bandwidth 00176 << ",\ndelay = " << entry.accessDelay 00177 << ",\nerrorRate = " << entry.errorRate 00178 << ",\ntxMaxQueueTime = " << entry.txMaxQueueTime 00179 << ",\ntxFinished = " << entry.txFinished; 00180 00181 return out; 00182 }