mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-12-29 03:14:04 +00:00
Fix incorrect units in comment for TCP_MSL. Allow override.
This commit is contained in:
parent
52e8ec03ba
commit
2ec3c46838
@ -184,7 +184,9 @@ void tcp_rexmit_rto (struct tcp_pcb *pcb);
|
|||||||
|
|
||||||
#define TCP_OOSEQ_TIMEOUT 6U /* x RTO */
|
#define TCP_OOSEQ_TIMEOUT 6U /* x RTO */
|
||||||
|
|
||||||
#define TCP_MSL 60000U /* The maximum segment lifetime in microseconds */
|
#ifndef TCP_MSL
|
||||||
|
#define TCP_MSL 60000U /* The maximum segment lifetime in milliseconds */
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Keepalive values, compliant with RFC 1122. Don't change this unless you know what you're doing */
|
/* Keepalive values, compliant with RFC 1122. Don't change this unless you know what you're doing */
|
||||||
#ifndef TCP_KEEPIDLE_DEFAULT
|
#ifndef TCP_KEEPIDLE_DEFAULT
|
||||||
|
Loading…
Reference in New Issue
Block a user