mirror of
https://github.com/apache/nuttx.git
synced 2025-01-12 20:58:44 +08:00
net: Enable dynamic allocation of tcp/udp/ipfwd buffer by default
Signed-off-by: Zhe Weng <wengzhe@xiaomi.com>
This commit is contained in:
parent
50b3ab7671
commit
3e62be8361
3 changed files with 3 additions and 3 deletions
|
@ -43,7 +43,7 @@ config NET_IPFORWARD_NSTRUCT
|
|||
|
||||
config NET_IPFORWARD_ALLOC_STRUCT
|
||||
int "Dynamic forwarding structures allocation"
|
||||
default 0
|
||||
default 1
|
||||
---help---
|
||||
When set to 0 all dynamic allocations are disabled
|
||||
|
||||
|
|
|
@ -261,7 +261,7 @@ config NET_TCP_NWRBCHAINS
|
|||
|
||||
config NET_TCP_ALLOC_WRBCHAINS
|
||||
int "Dynamic I/O buffer chain heads allocation"
|
||||
default 0
|
||||
default 1
|
||||
---help---
|
||||
When set to 0 all dynamic allocations are disabled
|
||||
|
||||
|
|
|
@ -105,7 +105,7 @@ config NET_UDP_NWRBCHAINS
|
|||
|
||||
config NET_UDP_ALLOC_WRBCHAINS
|
||||
int "Dynamic I/O buffer chain heads allocation"
|
||||
default 0
|
||||
default 1
|
||||
---help---
|
||||
When set to 0 all dynamic allocations are disabled.
|
||||
|
||||
|
|
Loading…
Reference in a new issue