This structure represents a single SACK (selective acknowledgment):
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 |
---|---|---|
start | unsigned int |
start seq no. of sack block |
end | unsigned int |
end seq no. of sack block |
// // This structure represents a single SACK (selective acknowledgment): // class Sack { unsigned int start; // start seq no. of sack block unsigned int end; // end seq no. of sack block }