#include "PastryNeighborhoodSet.h"#include "PastryTypes.h"Go to the source code of this file.
Functions | |
| Define_Module (PastryNeighborhoodSet) | |
| std::ostream & | operator<< (std::ostream &os, const PastryExtendedNode &n) |
| Stream output operator to make WATCH() do something useful with the neighborhood set. | |
Definition in file PastryNeighborhoodSet.cc.
| Define_Module | ( | PastryNeighborhoodSet | ) |
| std::ostream& operator<< | ( | std::ostream & | os, | |
| const PastryExtendedNode & | n | |||
| ) |
Stream output operator to make WATCH() do something useful with the neighborhood set.
Definition at line 155 of file PastryNeighborhoodSet.cc.
00156 { 00157 os << n.node << ";"; 00158 if (n.rtt != SimTime::getMaxTime()) 00159 os << " Ping: " << n.rtt; 00160 00161 return os; 00162 }
1.5.8