summaryrefslogtreecommitdiff
path: root/nuttx/net/arp/Kconfig
blob: 9e9a5339f39d5b2b8ac4da088f8536bbf5ecfa31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

menu "ARP Configuration"

config NET_ARP
	bool
	default y if !NET_SLIP
	default n if NET_SLIP
	---help---
		This setting is currently overridden by logic in include/nuttx/net

if NET_ARP

config NET_ARPTAB_SIZE
	int "ARP table size"
	default 16
	---help---
		The size of the ARP table (in entries).

config NET_ARP_IPIN
	bool "ARP address harvesting"
	default n
	---help---
		Harvest IP/MAC address mappings from the ARP table
		from incoming IP packets.

endif # NET_ARP
endmenu # ARP Configuration