IWiredInterface

Package: inet.linklayer.contract

IWiredInterface

module interface

Interface for wired network interfaces.

Inheritance diagram

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

Implemented by

Name Type Description
EthernetCutthroughInterface compound module

Represents an Ethernet network interface with Ethernet cut-through switching support. In contrast with store-and-forward switching, Ethernet cut-through switching can begin the transmission of the outgoing packet before the reception of the corresponding incoming packet ends. Ethernet cut-through switching can significantly reduce end-to-end delay in the network.

EthernetInterface compound module

Represents an Ethernet network interface.

EthernetPlcaInterface compound module

Implements a network interface that is suitable for use in Ethernet 10BASE-T1S multidrop links. Such a multidrop link uses the Ethernet Phyisical Layer Collision Avoidance (PLCA) protocol. The protocol is defined in the IEEE 802.3cg-2019 standard. This network interface can be used in any network node module (e.g. ~StandardHost) that allows replacing its network interfaces. All network interfaces on the same multidrop link must use this module.

ExtLowerEthernetInterface compound module

Provides an Ethernet network interface suitable for emulation. The lower part of the network interface is realized in the real world using a real Ethernet socket of the host computer which is running the simulation.

ExtUpperEthernetInterface compound module

Provides an Ethernet network interface suitable for emulation. The upper part of the network interface is realized in the real world using a real TAP device of the host computer which is running the simulation.

LayeredEthernetInterface compound module

Implements an Ethernet network interface.

PppInterface compound module

Implements a PPP network interface.

Known subclasses

Name Type Description
IEthernetInterface module interface

Interface for Ethernet network interfaces.

IPppInterface module interface

Interface for PPP network interfaces.

Extends

Name Type Description
INetworkInterface module interface

Interface for network interfaces.

Properties

Name Value Description
display i=block/ifcard

Source code

//
// Interface for wired network interfaces.
//
moduleinterface IWiredInterface extends INetworkInterface
{
    parameters:
        @display("i=block/ifcard");
    gates:
        inout phys;
}

File: src/inet/linklayer/contract/IWiredInterface.ned