#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 40 of file PeerInfo.cc.
{ os << "ModuleId: " << info.moduleId << "Bootstrapped: " << (info.bootstrapped ? "true" : "false"); if (info.npsLayer >= 0) os << "; NPS Layer: " << info.npsLayer; return os; }