Package: inet.linklayer.common
IIeee8021dQosClassifier
module interfaceInterface for 802.1d QoS classifiers. For each packet, the classifier computes a 802.1d User Priority (UP) value, and sets in on the Iee802Ctrl control info before sending out the packet on the "out" gate.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Implemented by
Name | Type | Description |
---|---|---|
ExampleQosClassifier | simple module |
An example QoS classifier that assigns a User Priority based on the transport protocol and port numbers. |
OmittedIeee8021dQosClassifier | compound module |
This module implements the module given interface and can be used as an omitted optional module that removes itself from the module hierarchy during initialize. |
QosClassifier | simple module |
This module classifies packets and assigns a User Priority based on the IP protocol or the transport protocol port numbers. |
RandomQosClassifier | simple module |
A QoS classifier that assigns a random User Priority. This is useful for testing purposes. |
Used in compound modules
Name | Type | Description |
---|---|---|
ExtUpperIeee80211Interface | compound module |
This module provides an IEEE 802.11 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. |
Ieee80211Interface | compound module |
This module implements an IEEE 802.11 network interface. It implements a large subset of the IEEE 802.11 standard, and may use radio models and wireless signal representations of varying levels of detail. It is also extremely configurable, and its component structure makes it easy to experiment with various details of the protocol. |
WirelessInterface | compound module |
This module implements a generic wireless network interface. |
Properties
Name | Value | Description |
---|---|---|
display | i=block/fork |
Source code
// // Interface for 802.1d QoS classifiers. For each packet, the classifier // computes a 802.1d User Priority (UP) value, and sets in on 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; }File: src/inet/linklayer/common/IIeee8021dQosClassifier.ned