ITrafficConditionerLayer

Package: inet.protocolelement.trafficconditioner

ITrafficConditionerLayer

module interface

Defines a module interface for traffic conditioner layer implementations. Traffic conditioner layers provide mechanisms for controlling packet flow through the network stack. They can shape, police, and condition traffic by applying various policies for dropping, delaying, or reordering packets in both ingress and egress directions.

Inheritance diagram

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

Implemented by

Name Type Description
OmittedTrafficConditionerLayer compound module

Implements the module given interface and can be used as an omitted optional module that removes itself from the module hierarchy during initialization.

TrafficConditionerLayer compound module (no description)

Used in compound modules

Name Type Description
LayeredEthernetInterface compound module

Implements an Ethernet network interface.

Properties

Name Value Description
omittedTypename OmittedTrafficConditionerLayer
display i=block/layer

Source code

//
// Defines a module interface for traffic conditioner layer implementations.
// Traffic conditioner layers provide mechanisms for controlling packet flow
// through the network stack. They can shape, police, and condition traffic
// by applying various policies for dropping, delaying, or reordering packets
// in both ingress and egress directions.
//
moduleinterface ITrafficConditionerLayer
{
    parameters:
        @omittedTypename(OmittedTrafficConditionerLayer);
        @display("i=block/layer");
    gates:
        input upperLayerIn;
        output upperLayerOut;
        input lowerLayerIn;
        output lowerLayerOut;
}

File: src/inet/protocolelement/trafficconditioner/ITrafficConditionerLayer.ned