Message SCTPDataMsg

File: src/transport/sctp/SCTPMessage.msg

(no description)

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
cPacket (unknown -- not in documented files)

Fields:

Name Type Description
eBit bool

Chunk Flags

bBit bool
enqueuingTime simtime_t
expiryTime simtime_t
ppid uint32
initialDestination IPvXAddress
msgNum uint32
sid uint16
ordered bool
booksize uint32
rtx uint32
fragment bool

Source code:

message SCTPDataMsg extends cPacket
{
    // Chunk Flags
    bool eBit = 0;
    bool bBit = 0;
    simtime_t enqueuingTime;
    simtime_t expiryTime;
    uint32 ppid;
    IPvXAddress initialDestination;
    uint32 msgNum;
    uint16 sid;
    bool ordered;
    uint32 booksize;
    uint32 rtx;
    bool fragment;
}