Simple Module PIMNeighborTable

Package: inet.routing.pim.tables
File: src/inet/routing/pim/tables/PIMNeighborTable.ned

C++ definition

The PIMNeighborTable module contains information about neighboring PIM routers.

PIMNeighborTable

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Used in compound modules:

Name Type Description
PIMRouting compound module (no description)

Properties:

Name Value Description
display i=block/table

Signals:

Name Type Unit
NF_PIM_NEIGHBOR_DELETED PIMNeighbor
NF_PIM_NEIGHBOR_ADDED PIMNeighbor
NF_PIM_NEIGHBOR_CHANGED PIMNeighbor

Source code:

//
// The PIMNeighborTable module contains information about neighboring PIM routers.
//
simple PIMNeighborTable
{
    @display("i=block/table");
    @signal[NF_PIM_NEIGHBOR_ADDED](type=PIMNeighbor);
    @signal[NF_PIM_NEIGHBOR_DELETED](type=PIMNeighbor);
    @signal[NF_PIM_NEIGHBOR_CHANGED](type=PIMNeighbor);
}