From bc20360d345368ec8746a6f30fc1bdcbbe83ced5 Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Fri, 27 Mar 2020 10:57:32 +0100 Subject: [PATCH] examples/gnrc_border_router: add sock_dns as a comment Alternative to https://github.com/RIOT-OS/RIOT/pull/13732 --- examples/gnrc_border_router/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/gnrc_border_router/Makefile b/examples/gnrc_border_router/Makefile index d7730bdcc4..b7d1ea13e0 100644 --- a/examples/gnrc_border_router/Makefile +++ b/examples/gnrc_border_router/Makefile @@ -36,6 +36,11 @@ USEMODULE += ps # configure the node as a RPL DODAG root when receiving a prefix. #USEMODULE += gnrc_rpl +# 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 + # When using a WiFi uplink we should use DHCPv6 ifeq (wifi,$(UPLINK)) USE_DHCPV6 ?= 1