mirror of https://github.com/ARMmbed/mbed-os.git
lwip - Reduced buffer used for packet-pressure tests
A larger buffer gives the network stack the best options for maximizing throughput. However, the initial buffer size did not fit on small targets. Resized 8192 -> 1024.pull/3265/head
parent
0d42ba6401
commit
2295e40fc0
|
|
@ -18,7 +18,7 @@
|
|||
#endif
|
||||
|
||||
#ifndef MBED_CFG_TCP_CLIENT_PACKET_PRESSURE_BUFFER
|
||||
#define MBED_CFG_TCP_CLIENT_PACKET_PRESSURE_BUFFER 8192
|
||||
#define MBED_CFG_TCP_CLIENT_PACKET_PRESSURE_BUFFER 1024
|
||||
#endif
|
||||
|
||||
#ifndef MBED_CFG_TCP_CLIENT_PACKET_PRESSURE_SEED
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
#endif
|
||||
|
||||
#ifndef MBED_CFG_UDP_CLIENT_PACKET_PRESSURE_BUFFER
|
||||
#define MBED_CFG_UDP_CLIENT_PACKET_PRESSURE_BUFFER 8192
|
||||
#define MBED_CFG_UDP_CLIENT_PACKET_PRESSURE_BUFFER 1024
|
||||
#endif
|
||||
|
||||
#ifndef MBED_CFG_UDP_CLIENT_PACKET_PRESSURE_TIMEOUT
|
||||
|
|
|
|||
Loading…
Reference in New Issue