Message SCTPDataChunk

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:

SCTPChunk (message) (no description)

Fields:

Name Type Description
chunkType uint8

Chunk Type

sid uint16

Stream identifier

ppid uint32

Payload Protocol Identifier

eBit bool

Chunk Flags

uBit bool
ssn uint16

Stream Sequence Number

tsn uint32

Transmission Sequence Number

enqueuingTime simtime_t
bBit bool

Source code:

message SCTPDataChunk extends SCTPChunk
{
    // Chunk Flags
    bool eBit = 0;
    bool bBit = 0;
    bool uBit = 0;
    // Transmission Sequence Number
    uint32 tsn;
    // Stream identifier
    uint16 sid;
    // Stream Sequence Number
    uint16 ssn;
    // Payload Protocol Identifier
    uint32 ppid;
    simtime_t enqueuingTime;
}