# HG changeset patch # User Matthew Wild # Date 1255793128 -3600 # Node ID ffbc57a4dea8f3e70e59a6227c8dc26ec51833bf # Parent 8fceabd84d7472bb44d79a242c5574a24d27860b mod_tls: Offer the host-specific cert (when there is one) to incoming c2s/s2s connections, fixes #30 (thanks, albert, Flo, johnny, and all who nagged me :) ) diff -r 8fceabd84d74 -r ffbc57a4dea8 plugins/mod_tls.lua --- a/plugins/mod_tls.lua Sat Oct 17 16:23:03 2009 +0100 +++ b/plugins/mod_tls.lua Sat Oct 17 16:25:28 2009 +0100 @@ -19,6 +19,9 @@ if session.conn.starttls then session.send(st.stanza("proceed", { xmlns = xmlns_starttls })); session:reset_stream(); + if session.host and hosts[session.host].ssl_ctx_in then + session.conn.set_sslctx(hosts[session.host].ssl_ctx_in); + end session.conn.starttls(); session.log("info", "TLS negotiation started..."); session.secure = false; @@ -33,6 +36,9 @@ if session.conn.starttls then session.sends2s(st.stanza("proceed", { xmlns = xmlns_starttls })); session:reset_stream(); + if session.to_host and hosts[session.to_host].ssl_ctx_in then + session.conn.set_sslctx(hosts[session.to_host].ssl_ctx_in); + end session.conn.starttls(); session.log("info", "TLS negotiation started for incoming s2s..."); session.secure = false;