Message SCTPInitChunk

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.

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
initTag uint32

Initiate Tag

a_rwnd uint32

Advertised Receiver Window

noOutStreams uint16

Number of Outbound Streams

noInStreams uint16

Number of Inbound Streams

initTSN uint32

Initial TSN

forwardTsn bool
addresses IPvXAddress[]
unrecognizedParameters uint8[]

Will be filled by the Parser, if unrecognized Parameters arrive.

chunkType uint8

Chunk Type

Source code:

message SCTPInitChunk extends SCTPChunk
{
    // Initiate Tag
    uint32 initTag;
    // Advertised Receiver Window
    uint32 a_rwnd;
    // Number of Outbound Streams
    uint16 noOutStreams;
    // Number of Inbound Streams
    uint16 noInStreams;
    // Initial TSN
    uint32 initTSN;
    bool forwardTsn;
    IPvXAddress addresses[];
    uint8 unrecognizedParameters[]; //Will be filled by the Parser, if unrecognized Parameters arrive.
}