Multicast Routing Modelling In OMNeT++
Functions
PimNeighborTable.cc File Reference

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)

Detailed Description

File implements table of PIM neighbors.

Date:
19.3.2012
Author:
: Veronika Rybova

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.


Function Documentation

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;
};