26 lines
561 B
Plaintext
26 lines
561 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
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
|