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. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Extends:

cPacket (unknown -- not in documented files)

Fields:

Name Type Description
expiryTime simtime_t
sid uint16
ppid uint32
initialDestination IPvXAddress
ordered bool
msgNum uint32
enqueuingTime simtime_t
booksize uint32
rtx uint32

Source code:

message SCTPDataMsg extends cPacket
{
    simtime_t enqueuingTime;
    simtime_t expiryTime;
    uint32 ppid;
    IPvXAddress initialDestination;
    uint32 msgNum;
    uint16 sid;
    bool ordered;
    uint32 booksize;
    uint32 rtx;
}