summaryrefslogtreecommitdiff
path: root/nuttx/net/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/net/Kconfig')
-rw-r--r--nuttx/net/Kconfig15
1 files changed, 14 insertions, 1 deletions
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