OmittedProtocolLayer.ned
NED File src/inet/protocolelement/common/OmittedProtocolLayer.ned
| Name | Type | Description |
|---|---|---|
| OmittedProtocolLayer | compound module |
Implements the module given interface and can be used as an omitted optional module that removes itself from the module hierarchy during initialization. |
Source code
// // Copyright (C) 2020 OpenSim Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later // package inet.protocolelement.common; import inet.common.Module; import inet.protocolelement.contract.IProtocolLayer; // // Implements the module given interface and can be used as an omitted // optional module that removes itself from the module hierarchy during initialization. // module OmittedProtocolLayer extends Module like IProtocolLayer { parameters: @class(::inet::OmittedModule); @display("i=block/layer,black,50"); gates: input upperLayerIn; output upperLayerOut; input lowerLayerIn; output lowerLayerOut; connections: upperLayerIn --> lowerLayerOut; lowerLayerIn --> upperLayerOut; }