From 04222f0393fc5f3030aded2740e135409bc8e991 Mon Sep 17 00:00:00 2001 From: "Martine S. Lenders" Date: Fri, 28 Aug 2020 19:56:02 +0200 Subject: [PATCH] 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. --- examples/gnrc_border_router/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/gnrc_border_router/Makefile b/examples/gnrc_border_router/Makefile index dde7c979ca..10236acc6e 100644 --- a/examples/gnrc_border_router/Makefile +++ b/examples/gnrc_border_router/Makefile @@ -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))