Class TCPOption

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

C++ definition

(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.

Known subclasses:

Name Type Description
TCPOptionEnd class (no description)
TCPOptionMaxSegmentSize class (no description)
TCPOptionNop class (no description)
TCPOptionSack class (no description)
TCPOptionSackPermitted class (no description)
TCPOptionTimestamp class (no description)
TCPOptionUnknown class (no description)
TCPOptionWindowScale class (no description)

Fields:

Name Type Description
kind unsigned short

option kind

length unsigned short

option length

Source code:

class TCPOption
{
    unsigned short kind @enum(TCPOptionNumbers) = -1;  // option kind
    unsigned short length = 1;                    // option length
}