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. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Fields:

Name Type Description
values unsigned int[]

option value(s)

length unsigned short

option length

kind unsigned short

option kind

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)
}