Msg File src/inet/protocolelement/redundancy/StreamTag.msg
Name | Type | Description |
---|---|---|
StreamTagBase | class |
This is an abstract base class that should not be directly added as a tag. |
StreamReq | class |
This request determines the stream that should be used to send the packet. It may be present on a packet from the application to the mac protocol. |
StreamInd | class |
This indication specifies the stream that was used to receive the packet. It may be present on a packet from the mac protocol to the application. |
Source code
// // Copyright (C) 2020 OpenSim Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later // import inet.common.INETDefs; import inet.common.TagBase; namespace inet; // // This is an abstract base class that should not be directly added as a tag. // class StreamTagBase extends TagBase { string streamName; } // // This request determines the stream that should be used to send the packet. // It may be present on a packet from the application to the mac protocol. // class StreamReq extends StreamTagBase { } // // This indication specifies the stream that was used to receive the packet. // It may be present on a packet from the mac protocol to the application. // class StreamInd extends StreamTagBase { }