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
60c40e44de
commit
2e726abc77
1 changed files with 4 additions and 2 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue