aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_tls.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2010-02-12 02:39:50 +0500
committerWaqas Hussain <waqas20@gmail.com>2010-02-12 02:39:50 +0500
commit2e726abc77cdfb09f01eb31358ad56d587a9c88e (patch)
tree6ca380b0a869e9c51d2c593bb321f447273ecb37 /plugins/mod_tls.lua
parent60c40e44de335c4d7f6ed8b6ed25e8307bc4bcd9 (diff)
downloadprosody-2e726abc77cdfb09f01eb31358ad56d587a9c88e.tar.gz
prosody-2e726abc77cdfb09f01eb31358ad56d587a9c88e.zip
mod_tls: Respond with proper error when TLS cannot be negotiated.
Diffstat (limited to 'plugins/mod_tls.lua')
-rw-r--r--plugins/mod_tls.lua6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/mod_tls.lua b/plugins/mod_tls.lua
index 8a450803..fb1433da 100644
--- a/plugins/mod_tls.lua
+++ b/plugins/mod_tls.lua
@@ -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);