LteMacPdu

Namespace simu5g

LteMacPdu

class

This is the MAC message flowing through LTE stack.

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
FieldsChunk class (no description)

Fields

Name Type Description
sdu Packet[]
headerLength unsigned int
macPduId long

need separate macPduId (e.g. for feedback packets) since OMNET PDU id is automatically updated whenever a new packet is created, e.g. when this PDU is duplicated

Source code

//
// This is the MAC message flowing through LTE stack.
//
class LteMacPdu extends inet::FieldsChunk
{
    @customize(true);
    abstract inet::Packet sdu[];
    unsigned int headerLength = 0;
    // need separate macPduId (e.g. for feedback packets) since OMNET PDU id is automatically updated
    // whenever a new packet is created, e.g. when this PDU is duplicated
    long macPduId = 0;

    //#
    //# Follows a list of elements only present in
    //# the customized class (see LteMacPdu.h):
    //#
    //# MacSduList sduList;
    //# MacControlElementsList ceList;
    //#
}

File: src/stack/mac/packet/LteMacPdu.msg