diff options
| author | Michael Brown | 2006-06-16 15:16:59 +0200 |
|---|---|---|
| committer | Michael Brown | 2006-06-16 15:16:59 +0200 |
| commit | bcdcd796fb10d0d3f0977236fae64a1f74f33cd8 (patch) | |
| tree | ba7b9d114a6b694692ddd3ab87eec486f690107a /src | |
| parent | Simplify TX datapath. (diff) | |
| download | ipxe-bcdcd796fb10d0d3f0977236fae64a1f74f33cd8.tar.gz ipxe-bcdcd796fb10d0d3f0977236fae64a1f74f33cd8.tar.xz ipxe-bcdcd796fb10d0d3f0977236fae64a1f74f33cd8.zip | |
32kB window is actually larger than our typical receive ring size.
Shrink to 4kB for now. We might want to see if it can be made
genuinely indicative of the RX ring size in the new TCP
implementation.
Diffstat (limited to 'src')
| -rw-r--r-- | src/net/uip/uipopt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/uip/uipopt.h b/src/net/uip/uipopt.h index 70dd90ca2..b17b89055 100644 --- a/src/net/uip/uipopt.h +++ b/src/net/uip/uipopt.h @@ -328,7 +328,7 @@ extern void uip_udp_appcall ( void ); * * \hideinitializer */ -#define UIP_RECEIVE_WINDOW 32768 +#define UIP_RECEIVE_WINDOW 4096 /** * Determines if support for TCP urgent data notification should be |
