TcpOptionMaxSegmentSize

TcpOptionMaxSegmentSize

class

C++ definition

(no description)

Inheritance diagram

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Extends

Name Type Description
TcpOption class

Header Options (optional):

Fields

Name Type Description
kind TcpOptionNumbers

option kind

length unsigned short

option length

maxSegmentSize uint16_t

uint16_t

Source code

class TcpOptionMaxSegmentSize extends TcpOption
{
    kind = TCPOPTION_MAXIMUM_SEGMENT_SIZE;
    length = 4;
    uint16_t maxSegmentSize;   // uint16_t
}

File: src/inet/transportlayer/tcp_common/TcpHeader.msg