comparison mod_s2s_auth_dane/mod_s2s_auth_dane.lua @ 1758:7ba877e2d660

mod_s2s_auth_dane: Ignore mutating of the 'module' global, that is ok in prosody plugins [luacheck]
author Kim Alvefur <zash@zash.se>
date Thu, 21 May 2015 11:14:16 +0200
parents d011b87b7f58
children 7e04ca0aa757
comparison
equal deleted inserted replaced
1757:d011b87b7f58 1758:7ba877e2d660
12 -- TODO Things to test/handle: 12 -- TODO Things to test/handle:
13 -- Negative or bogus answers 13 -- Negative or bogus answers
14 -- No encryption offered 14 -- No encryption offered
15 -- Different hostname before and after STARTTLS - mod_s2s should complain 15 -- Different hostname before and after STARTTLS - mod_s2s should complain
16 -- Interaction with Dialback 16 -- Interaction with Dialback
17 --
18 -- luacheck: ignore module
17 19
18 module:set_global(); 20 module:set_global();
19 21
20 local noop = function () end 22 local noop = function () end
21 local type = type; 23 local type = type;