IPdcpLegSplitter.ned

NED File src/simu5g/stack/pdcp/IPdcpLegSplitter.ned

Name Type Description
IPdcpLegSplitter module interface

Module interface for the TX-side leg dispatcher of a PDCP entity (see PdcpEntityBase): implementations pick the RLC leg for each PDCP PDU and apply that leg's id mapping. Instantiated by the PdcpEntityBase compound via a typename parameter when a leg needs it: on a multi-leg bearer, and on a single-leg bearer whose leg is not the anchor's (an SCG bearer).

Source code

//
//                  Simu5G
//
// Authors: Andras Varga (OpenSim Ltd)
//
// This file is part of a software released under the license included in file
// "license.pdf". Please read LICENSE and README files before using it.
// The above files and the present reference are part of the software itself,
// and cannot be removed from it.
//

package simu5g.stack.pdcp;

//
// Module interface for the TX-side leg dispatcher of a PDCP entity
// (see ~PdcpEntityBase): implementations pick the RLC leg for each PDCP PDU and
// apply that leg's id mapping. Instantiated by the PdcpEntityBase compound via a
// typename parameter when a leg needs it: on a multi-leg bearer, and on a
// single-leg bearer whose leg is not the anchor's (an SCG bearer).
//
moduleinterface IPdcpLegSplitter
{
    parameters:
        @display("i=block/dispatch");
    gates:
        input in;        // PDUs from the TX entity
        output out[];    // To leg k
}