mirror of
https://github.com/apache/nuttx.git
synced 2026-08-02 04:38:59 +00:00
24 lines
455 B
Text
24 lines
455 B
Text
|
|
#
|
||
|
|
# For a description of the syntax of this configuration file,
|
||
|
|
# see misc/tools/kconfig-language.txt.
|
||
|
|
#
|
||
|
|
|
||
|
|
menu "Routing Table Configuration"
|
||
|
|
|
||
|
|
config NET_ROUTE
|
||
|
|
bool "Routing table support"
|
||
|
|
default n
|
||
|
|
---help---
|
||
|
|
Build in support for a routing table. See include/net/route.h
|
||
|
|
|
||
|
|
if NET_ROUTE
|
||
|
|
|
||
|
|
config NET_MAXROUTES
|
||
|
|
int "Routing table size"
|
||
|
|
default 4
|
||
|
|
---help---
|
||
|
|
The size of the routing table (in entries).
|
||
|
|
|
||
|
|
endif # NET_ROUTE
|
||
|
|
endmenu # ARP Configuration
|