summaryrefslogtreecommitdiff
path: root/apps/netutils/dnsclient/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'apps/netutils/dnsclient/Kconfig')
-rw-r--r--apps/netutils/dnsclient/Kconfig29
1 files changed, 29 insertions, 0 deletions
diff --git a/apps/netutils/dnsclient/Kconfig b/apps/netutils/dnsclient/Kconfig
new file mode 100644
index 000000000..77b2bd634
--- /dev/null
+++ b/apps/netutils/dnsclient/Kconfig
@@ -0,0 +1,29 @@
+#
+# For a description of the syntax of this configuration file,
+# see misc/tools/kconfig-language.txt.
+#
+
+config NETUTILS_DNSCLIENT
+ bool "DNS Name resolution"
+ default n
+ depends on NET && NET_UDP && NET_BROADCAST
+ ---help---
+ Enable support for the name resolution.
+
+if NETUTILS_DNSCLIENT
+
+config NETUTILS_DNSCLIENT_ENTRIES
+ int "Number of DNS resolver entries"
+ default 8
+ ---help---
+ Number of DNS resolver entries. Default: 8
+
+config NETUTILS_DNSCLIENT_MAXRESPONSE
+ int "Max response size"
+ default 96
+ ---help---
+ This setting determines the maximum size of response message that
+ can be received by the DNS resolver. The default is 96 but may
+ need to be larger on enterprise networks (perhaps 176).
+
+endif # NETUTILS_DNSCLIENT