RlcTmRxEntity
Package: simu5g.stack.rlc.tm
RlcTmRxEntity
simple moduleImplements the receiving side of the Transparent Mode (TM) of the Radio Link Control (RLC) layer for a specific connection. Simply forwards received PDUs to the upper layer without reassembly or reordering.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Properties
| Name | Value | Description |
|---|---|---|
| dynamic | true | |
| display | i=block/layer |
Gates
| Name | Direction | Size | Description |
|---|---|---|---|
| in | input |
PDUs from MAC, via the RlcMux |
|
| out | output |
SDUs to the PDCP layer (direct per-DRB connection, not via a mux) |
Source code
// // Implements the receiving side of the Transparent Mode (TM) of the // Radio Link Control (RLC) layer for a specific connection. // Simply forwards received PDUs to the upper layer without // reassembly or reordering. // simple RlcTmRxEntity like simu5g.stack.rlc.IRlcRxEntity { parameters: @dynamic(true); @display("i=block/layer"); gates: input in; // PDUs from MAC, via the RlcMux output out; // SDUs to the PDCP layer (direct per-DRB connection, not via a mux) }File: src/simu5g/stack/rlc/tm/RlcTmRxEntity.ned