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