Class TCPOption

File: src/transport/tcp/TCPSegment.msg

Header Options (optional):

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.

Fields:

Name Type Description
kind unsigned short

option kind

length unsigned short

option length

values unsigned int[]

option value(s)

Source code:

// Header Options (optional):
class TCPOption
{
    unsigned short kind @enum(TCPOptionNumbers) = TCPOPTION_END_OF_OPTION_LIST;  // option kind
    unsigned short length = 1;                          // option length
    unsigned int values[];                              // option value(s)
}