summaryrefslogtreecommitdiff
path: root/apps/netutils/discover/Kconfig
blob: 1ae18a0d39f95ba805e6da07bbb1331821972722 (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
32
33
34
35
36
37
38
39
40
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

config NETUTILS_DISCOVER
	bool "Network Discovery Utility"
	default n
	depends on NET_UDP
	select NETUTILS_NETLIB
	---help---
		Tool for discovering devices on the local network per UDP broadcast.

if NETUTILS_DISCOVER

config DISCOVER_STACK_SIZE
	int "Discover Daemon Stack Size"
	default 1024

config DISCOVER_PRIORITY
	int "Discover Daemon Priority"
	default 50

config DISCOVER_PORT
	int "Discover Daemon Port Number"
	default 96

config DISCOVER_INTERFACE
	string "Network Interface Name"
	default "eth0"

config DISCOVER_DEVICE_CLASS
	hex "Network Discovery Class"
	default 0xff

config DISCOVER_DESCR
	string "Discoverer Description"
	default "NuttX"

endif