mod_tls: Respond with proper error when TLS cannot be negotiated.

This commit is contained in:
Waqas Hussain 2010-02-12 02:39:50 +05:00
parent eeca1d016a
commit 2bfb7b55ed

View file

@ -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);