PimNeighborTable.ned

NED File src/inet/routing/pim/tables/PimNeighborTable.ned

Name Type Description
PimNeighborTable simple module

The PimNeighborTable module contains information about neighboring PIM routers.

Source code

//
// Copyright (C) 2013 Brno University of Technology (http://nes.fit.vutbr.cz/ansa)
//
// SPDX-License-Identifier: LGPL-3.0-or-later
//

// Authors: Veronika Rybova, Vladimir Vesely ([email protected]),
//          Tamas Borbely ([email protected])

package inet.routing.pim.tables;

//
// The PimNeighborTable module contains information about neighboring PIM routers.
//
simple PimNeighborTable
{
      @display("i=block/table");
      @signal[pimNeighborAdded](type=inet::PimNeighbor);
    @signal[pimNeighborDeleted](type=inet::PimNeighbor);
    @signal[pimNeighborChanged](type=inet::PimNeighbor);
}