![]() |
Multicast Routing Modelling In OMNeT++
|
File implements table of PIM neighbors. More...
#include "PimNeighborTable.h"
Go to the source code of this file.
Functions | |
Define_Module (PimNeighborTable) | |
std::ostream & | operator<< (std::ostream &os, const PimNeighbor &e) |
File implements table of PIM neighbors.
Table of neighbors contain information about all PIM neghbor routers which has also configured PIM protocol. Information about neighbors are obtained from Hello messages.
Definition in file PimNeighborTable.cc.
std::ostream& operator<< | ( | std::ostream & | os, |
const PimNeighbor & | e | ||
) |
Printout of structure Neighbor table (PimNeighbor).
Definition at line 19 of file PimNeighborTable.cc.
{ os << e.getId() << ": ID = " << e.getInterfaceID() << "; Addr = " << e.getAddr() << "; Ver = " << e.getVersion(); return os; };