]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
etc/config: explicitly set kind to tls
authorTomas Krizek <tomas.krizek@nic.cz>
Thu, 18 Apr 2019 07:19:38 +0000 (09:19 +0200)
committerTomas Krizek <tomas.krizek@nic.cz>
Thu, 18 Apr 2019 15:09:57 +0000 (17:09 +0200)
etc/config/meson.build

index e7d28e219c6ce4e7eb216d9657de37ac2664884f..918835a3f0303646c82fd6a4097787db3a35e96c 100644 (file)
@@ -8,9 +8,9 @@ else
   config_defaults = '''
 -- Listen on localhost
 net.listen('127.0.0.1')
-net.listen('127.0.0.1', 853)
 net.listen('::1')
-net.listen('::1', 853)
+net.listen('127.0.0.1', 853, { kind = 'tls' })
+net.listen('::1', 853, { kind = 'tls' })
 
 -- Extra interfaces for http module
 -- net.listen('127.0.0.1', 44353, { kind = 'doh' })