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

menu "IGMPv2 Client Support"

config NET_IGMP
	bool "IGMPv2 client support"
	default n
	depends on NET
	---help---
		Enable IGMPv2 client support.

if NET_IGMP

config PREALLOC_IGMPGROUPS
	int "Number of pre-allocated IGMP groups"
	default 4
	---help---
		Pre-allocated IGMP groups are used only if needed from interrupt
		level group created (by the IGMP server). Default: 4.

endif # NET_IGMP
endmenu # IGMPv2 Client Support