1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

examples/gnrc_border_router: include gnrc_ipv6_nib_dns explicitly

The other applications using `sock_dns` do it too
(`tests/gnrc_sock_dns` and `tests/gnrc_ipv6_nib_dns`) and besides it
doesn't make much sense to include RDNSS option support
(aka `gnrc_ipv6_nib_dns`) just because someone uses the DNS client
(aka `sock_dns`). This dependency will be removed in a later commit.
This commit is contained in:
Martine S. Lenders 2020-08-28 19:56:02 +02:00
parent d369eff042
commit 04222f0393
No known key found for this signature in database
GPG Key ID: CCD317364F63286F

View File

@ -39,7 +39,8 @@ USEMODULE += ps
# Optionally include DNS support. This includes resolution of names at an
# upstream DNS server and the handling of RDNSS options in Router Advertisements
# to auto-configure that upstream DNS server.
#USEMODULE += sock_dns
#USEMODULE += sock_dns # include DNS client
#USEMODULE += gnrc_ipv6_nib_dns # include RDNSS option handling
# When using a WiFi uplink we should use DHCPv6
ifeq (wifi,$(UPLINK))