summaryrefslogtreecommitdiff
path: root/apps/netutils/discover/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'apps/netutils/discover/Kconfig')
-rw-r--r--apps/netutils/discover/Kconfig39
1 files changed, 39 insertions, 0 deletions
diff --git a/apps/netutils/discover/Kconfig b/apps/netutils/discover/Kconfig
new file mode 100644
index 000000000..336550511
--- /dev/null
+++ b/apps/netutils/discover/Kconfig
@@ -0,0 +1,39 @@
+#
+# 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
+ ---help---
+ Tool for discovering devices on the local network per UDP broadcast.
+
+if NETUTILS_DISCOVER
+
+DISCOVER_STACK_SIZE
+ int "Discover Daemon Stack Size"
+ default 1024
+
+DISCOVER_PRIORITY
+ int "Discover Daemon Priority"
+ default 50
+
+DISCOVER_PORT
+ int "Discover Daemon Port Number"
+ default 96
+
+DISCOVER_INTERFACE
+ int "Network Interface Name"
+ default "eth0"
+
+DISCOVER_DEVICE_CLASS
+ hex "Network Discovery Class"
+ default 0xff
+
+CONFIG_DISCOVER_DESCR
+ string "Discoverer Description"
+ default "NuttX"
+
+endif