Message SCTPMessage

File: src/transport/sctp/SCTPMessage.msg

C++ definition: click here

(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
chunks cPacketPtr[]
srcPort uint16

Source Port

checksumOk bool
tag uint32

Verification Tag

destPort uint16

Destination Port

Source code:

message SCTPMessage extends cPacket
{
    @customize(true);
    // Source Port
    uint16 srcPort;
    // Destination Port
    uint16 destPort;
    // Verification Tag
    uint32 tag;
    bool checksumOk;
    abstract cPacketPtr chunks[];
}