SctpHeader
Namespace inet::sctp
SctpHeader
class(no description)
Extends
| Name | Type | Description |
|---|---|---|
| TransportHeaderBase | (unknown -- not in documented files) |
Fields
| Name | Type | Description |
|---|---|---|
| srcPort | uint16_t |
Source Port |
| destPort | uint16_t |
Destination Port |
| vTag | uint32_t |
Verification Tag |
| checksumOk | bool | |
| checksum | uint32_t | |
| checksumMode | ChecksumMode | |
| headerLength | unsigned short | |
| sctpChunks | SctpChunk[] |
Source code
class SctpHeader extends TransportHeaderBase { // Source Port uint16_t srcPort; // Destination Port uint16_t destPort; // Verification Tag uint32_t vTag; bool checksumOk; uint32_t checksum = 0; ChecksumMode checksumMode = CHECKSUM_MODE_UNDEFINED; unsigned short headerLength = 12; SctpChunk *sctpChunks[] @custom; }File: src/inet/transportlayer/sctp/SctpHeader.msg