mirror of
https://github.com/ipxe/ipxe
synced 2025-12-23 13:30:57 +03:00
Limit xmit window to one MTU. (Path MTU discovery not yet
implemented; should be done at some point.)
This commit is contained in:
@@ -237,6 +237,14 @@ struct tcp_mss_option {
|
||||
*/
|
||||
#define TCP_MAX_WINDOW_SIZE ( 65536 - 4 )
|
||||
|
||||
/**
|
||||
* Path MTU
|
||||
*
|
||||
* We really ought to implement Path MTU discovery. Until we do,
|
||||
* anything with a path MTU greater than this may fail.
|
||||
*/
|
||||
#define TCP_PATH_MTU 1460
|
||||
|
||||
/**
|
||||
* Advertised TCP MSS
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user