2014-06-26 13:02:08 -06:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 08:08:57 -06:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2014-06-26 13:02:08 -06:00
|
|
|
#
|
|
|
|
|
|
|
|
menu "Routing Table Configuration"
|
|
|
|
|
|
|
|
config NET_ROUTE
|
|
|
|
bool "Routing table support"
|
|
|
|
default n
|
2017-09-27 12:03:52 -06:00
|
|
|
depends on NET_IPv4 || NET_IPv6
|
2014-06-26 13:02:08 -06:00
|
|
|
---help---
|
|
|
|
Build in support for a routing table. See include/net/route.h
|
|
|
|
|
|
|
|
if NET_ROUTE
|
|
|
|
|
2017-09-27 12:03:52 -06:00
|
|
|
config ROUTE_MAX_IPv4ROUTES
|
|
|
|
int "IPv4 routing table size"
|
2014-06-26 13:02:08 -06:00
|
|
|
default 4
|
2017-09-27 12:03:52 -06:00
|
|
|
depends on NET_IPv4
|
2014-06-26 13:02:08 -06:00
|
|
|
---help---
|
2017-09-27 12:03:52 -06:00
|
|
|
The size of the IPv4 routing table (in entries).
|
|
|
|
|
|
|
|
config ROUTE_MAX_IPv6ROUTES
|
|
|
|
int "IPv6 routing table size"
|
|
|
|
default 4
|
|
|
|
depends on NET_IPv6
|
|
|
|
---help---
|
|
|
|
The size of the IPv6 routing table (in entries).
|
2014-06-26 13:02:08 -06:00
|
|
|
|
|
|
|
endif # NET_ROUTE
|
|
|
|
endmenu # ARP Configuration
|