Header Options (optional):
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Name | Type | Description |
---|---|---|
kind | unsigned short |
option kind |
length | unsigned short |
option length |
values | unsigned int[] |
option value(s) |
// 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) }