summaryrefslogtreecommitdiff
path: root/nuttx/net/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-10-01 19:13:06 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-10-01 19:13:06 -0600
commit2fcd0856d3acff82fe6946c2aa35e0a7a3e5158d (patch)
tree60a4e48bfa6a3853371f8e55f16f0c8f7d0bc39b /nuttx/net/Kconfig
parentb4e9e42b45494e19fd131ea02e2c01745de855a5 (diff)
downloadpx4-nuttx-2fcd0856d3acff82fe6946c2aa35e0a7a3e5158d.tar.gz
px4-nuttx-2fcd0856d3acff82fe6946c2aa35e0a7a3e5158d.tar.bz2
px4-nuttx-2fcd0856d3acff82fe6946c2aa35e0a7a3e5158d.zip
Simple routing table hooked into network build system
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