From 6ff2089ee48dc5afad914037de60a014796ff7c6 Mon Sep 17 00:00:00 2001 From: feijermu Date: Thu, 14 May 2020 18:10:32 +0800 Subject: [PATCH] Add DNS client examples for run-example.sh (#10283) Motivation: There exists no DNS client examples in run-example.sh for the moment. Modification: Add DNS client examples for run-example.sh. Result: Help run the examples. --- run-example.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/run-example.sh b/run-example.sh index 4a07d9ea19..c1de7e9575 100755 --- a/run-example.sh +++ b/run-example.sh @@ -40,6 +40,9 @@ EXAMPLE_MAP=( 'sctpecho-client:io.netty.example.sctp.SctpEchoClient' 'sctpecho-server:io.netty.example.sctp.SctpEchoServer' 'localecho:io.netty.example.localecho.LocalEcho' + 'udp-dns-client:io.netty.example.dns.udp.DnsClient' + 'tcp-dns-client:io.netty.example.dns.tcp.TcpDnsClient' + 'dot-dns-client:io.netty.example.dns.dot.DoTClient' ) EXAMPLE=''