summaryrefslogtreecommitdiff
path: root/apps/netutils/resolv/Kconfig
blob: 91f41ab98046db4e6a99189b3a675876905e39be (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
#
# 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 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