#include "PeerInfo.h"Go to the source code of this file.
Functions | |
| std::ostream & | operator<< (std::ostream &os, const PeerInfo info) |
Definition in file PeerInfo.cc.
| std::ostream& operator<< | ( | std::ostream & | os, | |
| const PeerInfo | info | |||
| ) |
| os | the ostream | |
| info | the PeerInfo |
Definition at line 39 of file PeerInfo.cc.
00040 { 00041 os << "ModuleId: " << info.moduleId << "Bootstrapped: " 00042 << (info.bootstrapped ? "true" : "false"); 00043 00044 if (info.npsLayer >= 0) os << "; NPS Layer: " << info.npsLayer; 00045 return os; 00046 }
1.5.8