From 2fcd0856d3acff82fe6946c2aa35e0a7a3e5158d Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Tue, 1 Oct 2013 19:13:06 -0600 Subject: Simple routing table hooked into network build system --- nuttx/net/Kconfig | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'nuttx/net/Kconfig') diff --git a/nuttx/net/Kconfig b/nuttx/net/Kconfig index c581e32a3..fbc34ec78 100644 --- a/nuttx/net/Kconfig +++ b/nuttx/net/Kconfig @@ -295,7 +295,7 @@ config NET_ARPTAB_SIZE int "ARP table size" default 16 ---help--- - The size of the ARP table + The size of the ARP table (in entries). config NET_ARP_IPIN bool "ARP address harvesting" @@ -304,6 +304,19 @@ config NET_ARP_IPIN Harvest IP/MAC address mappings from the ARP table from incoming IP packets. +config NET_ROUTE + bool "Routing table suport" + default n + ---help--- + Build in support for a routing table. See include/nuttx/net/route.h + +config NET_MAXROUTES + int "Routing table size" + default 4 + depends on NET_ROUTE + ---help--- + The size of the routing table (in entries). + config NET_MULTICAST bool "Multi-cast Tx support" default n -- cgit v1.2.3