mod_tls: Don't try to start TLS if we can't actually do it (thanks Florob)

This commit is contained in:
Matthew Wild 2009-10-09 17:48:45 +01:00
parent 74eb36a462
commit ed822f1ef0

View file

@ -73,7 +73,7 @@ module:hook("s2s-stream-features",
module:hook_stanza(xmlns_stream, "features",
function (session, stanza)
module:log("debug", "Received features element");
if stanza:child_with_ns(xmlns_starttls) then
if session.conn.starttls and stanza:child_with_ns(xmlns_starttls) then
module:log("%s is offering TLS, taking up the offer...", session.to_host);
session.sends2s("<starttls xmlns='"..xmlns_starttls.."'/>");
return true;