Diff

plugins/mod_s2s.lua @ 11415:a38f9e09ca31

mod_s2s: Add config setting to enable DANE
author Kim Alvefur <zash@zash.se>
date Tue, 02 Mar 2021 22:42:04 +0100
parent 11367:9525c4b4e5de
child 11417:f84005d06663
line wrap: on
line diff
--- a/plugins/mod_s2s.lua	Tue Mar 02 22:41:59 2021 +0100
+++ b/plugins/mod_s2s.lua	Tue Mar 02 22:42:04 2021 +0100
@@ -56,6 +56,7 @@
 	default_port = 5269;
 	use_ipv4 = module:get_option_boolean("use_ipv4", true);
 	use_ipv6 = module:get_option_boolean("use_ipv6", true);
+	use_dane = module:get_option_boolean("use_dane", false);
 };
 
 module:hook("stats-update", function ()