mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_tls: Respond with proper error when TLS cannot be negotiated.
This commit is contained in:
parent
eeca1d016a
commit
2bfb7b55ed
1 changed files with 2 additions and 1 deletions
|
@ -27,8 +27,9 @@ module:hook("stanza/urn:ietf:params:xml:ns:xmpp-tls:starttls", function(event)
|
|||
origin.log("info", "TLS negotiation started for %s...", origin.type);
|
||||
origin.secure = false;
|
||||
else
|
||||
-- FIXME: What reply?
|
||||
origin.log("warn", "Attempt to start TLS, but TLS is not available on this %s connection", origin.type);
|
||||
(origin.sends2s or origin.send)(st.stanza("failure", { xmlns = xmlns_starttls }));
|
||||
origin:close();
|
||||
end
|
||||
return true;
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue