OmittedIeee8022LlcLayer
Package: inet.linklayer.ieee8022
OmittedIeee8022LlcLayer
compound moduleImplements the module given an interface and can be used as an omitted optional module that removes itself from the module hierarchy during initialization.
Usage diagram
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Extends
| Name | Type | Description |
|---|---|---|
| Module | compound module |
Base module for all INET compound modules. |
Parameters
| Name | Type | Default value | Description |
|---|---|---|---|
| displayStringTextFormat | string | "" |
Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information |
Properties
| Name | Value | Description |
|---|---|---|
| class | ::inet::OmittedModule | |
| display | i=block/layer,black,50 |
Gates
| Name | Direction | Size | Description |
|---|---|---|---|
| upperLayerIn | input | ||
| upperLayerOut | output | ||
| lowerLayerIn | input | ||
| lowerLayerOut | output |
Source code
// // Implements the module given an interface and can be used as an omitted // optional module that removes itself from the module hierarchy during initialization. // module OmittedIeee8022LlcLayer extends Module like IIeee8022LlcLayer { parameters: @class(::inet::OmittedModule); @display("i=block/layer,black,50"); gates: input upperLayerIn; output upperLayerOut; input lowerLayerIn; output lowerLayerOut; connections: upperLayerIn --> lowerLayerOut; lowerLayerIn --> upperLayerOut; }File: src/inet/linklayer/ieee8022/OmittedIeee8022LlcLayer.ned