sessionmanager, mod_tls: Mark a session as secure when TLS is active

This commit is contained in:
Matthew Wild 2009-05-29 14:28:53 +01:00
parent 762a39c8d0
commit 81fedc9a08
2 changed files with 7 additions and 0 deletions

View file

@ -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);

View file

@ -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");