@@ -57,19 +57,19 @@ The TCP protocol is supported over IPv4. Server and client sockets are supported
57
57
* Header checksum is generated and validated.
58
58
* Maximum segment size is negotiated.
59
59
* Multiple packets are transmitted without waiting for an acknowledgement.
60
- * Reassembly of out-of-order segments is supported, with no more than 4 missing sequence ranges.
61
- * Lost packets are retransmitted with exponential backoff, starting at a fixed delay of 100 ms.
62
- * Sending keep-alive packets is supported, with a configurable interval.
63
- * Connection, retransmission and keep-alive timeouts are supported, with a configurable duration.
64
- * After arriving at the TIME-WAIT state, sockets close after a fixed delay of 10 s.
65
- * Urgent pointer is ** not** supported; any urgent octets will be received alongside data octets.
66
- * Silly window syndrome avoidance is ** not** supported for either transmission or reception.
67
- * Congestion control is ** not** implemented.
60
+ * Reassembly of out-of-order segments is supported, with no more than 4 gaps in sequence space.
61
+ * Keep-alive packets may be sent at a configurable interval.
62
+ * Retransmission timeout starts at a fixed interval of 100 ms and doubles every time.
63
+ * Time-wait timeout has a fixed interval of 10 s.
64
+ * User timeout has a configurable interval.
65
+ * Window scaling is ** not** supported, and the maximum buffer size is 65536.
66
+ * Selective acknowledgements are ** not** implemented.
68
67
* Delayed acknowledgements are ** not** implemented.
68
+ * Silly window syndrome avoidance is ** not** implemented.
69
69
* Nagle's algorithm is ** not** implemented.
70
- * Window scaling is ** not** supported, and the maximum buffer size is 65536 .
71
- * Timestamping (used in round-trip time measurement and protection against wrapped sequences)
72
- is ** not ** supported .
70
+ * Congestion control is ** not** implemented .
71
+ * Timestamping is ** not ** supported.
72
+ * Urgent pointer is ** ignored ** .
73
73
74
74
## Installation
75
75
0 commit comments