IIeee8021dQosClassifier.ned

NED File src/inet/linklayer/common/IIeee8021dQosClassifier.ned

Name Type Description
IIeee8021dQosClassifier module interface

Interface for 802.1d QoS classifiers. For each packet, the classifier computes an 802.1d User Priority (UP) value and sets it in the Iee802Ctrl control info before sending out the packet on the "out" gate.

Source code

//
// Copyright (C) 2015 OpenSim Ltd.
//
// SPDX-License-Identifier: LGPL-3.0-or-later
//


package inet.linklayer.common;

//
// Interface for 802.1d QoS classifiers. For each packet, the classifier
// computes an 802.1d User Priority (UP) value and sets it in the
// Iee802Ctrl control info before sending out the packet on the "out" gate.
//
moduleinterface IIeee8021dQosClassifier
{
    parameters:
        @display("i=block/fork");
    gates:
        input in;
        output out;
}