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 60c40e44de
commit 2e726abc77

View file

@ -26,8 +26,9 @@ module:add_handler("c2s_unauthed", "starttls", xmlns_starttls,
session.log("info", "TLS negotiation started...");
session.secure = false;
else
-- FIXME: What reply?
session.log("warn", "Attempt to start TLS, but TLS is not available on this connection");
(session.sends2s or session.send)(st.stanza("failure", { xmlns = xmlns_starttls }));
session:close();
end
end);
@ -43,8 +44,9 @@ module:add_handler("s2sin_unauthed", "starttls", xmlns_starttls,
session.log("info", "TLS negotiation started for incoming s2s...");
session.secure = false;
else
-- FIXME: What reply?
session.log("warn", "Attempt to start TLS, but TLS is not available on this s2s connection");
(session.sends2s or session.send)(st.stanza("failure", { xmlns = xmlns_starttls }));
session:close();
end
end);