mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_tls: Switch to : syntax for connection methods
This commit is contained in:
parent
2aa2de8a5b
commit
d578bb8ff2
1 changed files with 5 additions and 5 deletions
|
@ -20,9 +20,9 @@ module:add_handler("c2s_unauthed", "starttls", xmlns_starttls,
|
|||
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);
|
||||
session.conn:set_sslctx(hosts[session.host].ssl_ctx_in);
|
||||
end
|
||||
session.conn.starttls();
|
||||
session.conn:starttls();
|
||||
session.log("info", "TLS negotiation started...");
|
||||
session.secure = false;
|
||||
else
|
||||
|
@ -37,9 +37,9 @@ module:add_handler("s2sin_unauthed", "starttls", xmlns_starttls,
|
|||
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);
|
||||
session.conn:set_sslctx(hosts[session.to_host].ssl_ctx_in);
|
||||
end
|
||||
session.conn.starttls();
|
||||
session.conn:starttls();
|
||||
session.log("info", "TLS negotiation started for incoming s2s...");
|
||||
session.secure = false;
|
||||
else
|
||||
|
@ -91,7 +91,7 @@ module:hook_stanza(xmlns_starttls, "proceed",
|
|||
module:log("debug", "Proceeding with TLS on s2sout...");
|
||||
local format, to_host, from_host = string.format, session.to_host, session.from_host;
|
||||
session:reset_stream();
|
||||
session.conn.starttls(true);
|
||||
session.conn:starttls(true);
|
||||
session.secure = false;
|
||||
return true;
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue