mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
sessionmanager, mod_tls: Mark a session as secure when TLS is active
This commit is contained in:
parent
762a39c8d0
commit
81fedc9a08
2 changed files with 7 additions and 0 deletions
|
@ -171,6 +171,12 @@ function streamopened(session, attr)
|
||||||
session:close{ condition = "host-unknown", text = "This server does not serve "..tostring(session.host)};
|
session:close{ condition = "host-unknown", text = "This server does not serve "..tostring(session.host)};
|
||||||
return;
|
return;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- If session.secure is *false* (not nil) then it means we /were/ encrypting
|
||||||
|
-- since we now have a new stream header, session is secured
|
||||||
|
if session.secure == false then
|
||||||
|
session.secure = true;
|
||||||
|
end
|
||||||
|
|
||||||
local features = st.stanza("stream:features");
|
local features = st.stanza("stream:features");
|
||||||
fire_event("stream-features", session, features);
|
fire_event("stream-features", session, features);
|
||||||
|
|
|
@ -19,6 +19,7 @@ module:add_handler("c2s_unauthed", "starttls", xmlns_starttls,
|
||||||
session:reset_stream();
|
session:reset_stream();
|
||||||
session.conn.starttls();
|
session.conn.starttls();
|
||||||
session.log("info", "TLS negotiation started...");
|
session.log("info", "TLS negotiation started...");
|
||||||
|
session.secure = false;
|
||||||
else
|
else
|
||||||
-- FIXME: What reply?
|
-- FIXME: What reply?
|
||||||
session.log("warn", "Attempt to start TLS, but TLS is not available on this connection");
|
session.log("warn", "Attempt to start TLS, but TLS is not available on this connection");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue