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. |
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 |
---|---|---|
Ieee80211Nic | compound module |
This NIC implements an 802.11 network interface card. It can be configured via the mgmtType parameter to act as an AP or a STA, or for ad-hoc mode. |
WirelessNic | compound module | (no description) |
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 { gates: input in; output out; }File: src/inet/linklayer/common/IIeee8021QoSClassifier.ned