Message SCTPDataChunk

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
SCTPChunk message (no description)

Fields:

Name Type Description
eBit bool

Chunk Flags

bBit bool
uBit bool
iBit bool
tsn uint32

Transmission Sequence Number

sid uint16

Stream identifier

ssn uint16

Stream Sequence Number

ppid uint32

Payload Protocol Identifier

enqueuingTime simtime_t
firstSendTime simtime_t
chunkType uint8

Chunk Type

flags uint32

Source code:

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