ExampleQosClassifier.ned

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

Name Type Description
ExampleQosClassifier simple module

An example QoS classifier that assigns a User Priority based on the transport protocol and port numbers.

Source code

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


package inet.linklayer.common;

//
// An example QoS classifier that assigns a User Priority based on
// the transport protocol and port numbers.
//
simple ExampleQosClassifier like IIeee8021dQosClassifier
{
    parameters:
        @display("i=block/classifier");
    gates:
        input in;
        output out;
}