Simple Module GlobalARP

Package: inet.networklayer.arp.ipv4
File: src/inet/networklayer/arp/ipv4/GlobalARP.ned

C++ definition

TODO

GlobalARP

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.

Parameters:

Name Type Default value Description
interfaceTableModule string

The path to the InterfaceTable module

routingTableModule string

Properties:

Name Value Description
display i=block/layer

Gates:

Name Direction Size Description
netwIn input

incoming ARP requests and replies

netwOut output

outgoing ARP requests/replies

Signals:

Name Type Unit
failedARPResolution IARP::Notification
initiatedARPResolution IARP::Notification
completedARPResolution IARP::Notification

Source code:

//
// TODO
//
simple GlobalARP like IARP
{
    parameters:
        string interfaceTableModule;   // The path to the InterfaceTable module
        string routingTableModule;
        @display("i=block/layer");
        @signal[initiatedARPResolution](type=IARP::Notification);
        @signal[completedARPResolution](type=IARP::Notification);
        @signal[failedARPResolution](type=IARP::Notification);
    gates:
        input netwIn @labels(ARPPacket+Ieee802Ctrl); // incoming ARP requests and replies
        output netwOut @labels(ARPPacket+Ieee802Ctrl);  // outgoing ARP requests/replies
}