summaryrefslogtreecommitdiff
path: root/nuttx/net/arp/Kconfig
blob: 6b5464775dfca03316431a6796330ac0c3ffcbc8 (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
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

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