Message SCTPDataMsg

File: src/inet/transportlayer/sctp/SCTPMessage.msg

C++ definition

(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 L3Address
msgNum uint32
sid uint16
ordered bool
booksize uint32
rtx uint32
fragment bool
prMethod uint32
priority uint32
strReset bool
sackNow bool

Source code:

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