mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
forgot to commit mod_tls, oops :)
This commit is contained in:
parent
63de1444c3
commit
014df9a22a
1 changed files with 37 additions and 0 deletions
37
plugins/mod_tls.lua
Normal file
37
plugins/mod_tls.lua
Normal file
|
@ -0,0 +1,37 @@
|
|||
|
||||
local st = require "util.stanza";
|
||||
local send = require "core.sessionmanager".send_to_session;
|
||||
local sm_bind_resource = require "core.sessionmanager".bind_resource;
|
||||
|
||||
local usermanager_validate_credentials = require "core.usermanager".validate_credentials;
|
||||
local t_concat, t_insert = table.concat, table.insert;
|
||||
local tostring = tostring;
|
||||
|
||||
local log = require "util.logger".init("mod_starttls");
|
||||
|
||||
local xmlns_starttls ='urn:ietf:params:xml:ns:xmpp-tls';
|
||||
|
||||
local new_connhandler = require "net.connhandlers".new;
|
||||
|
||||
add_handler("c2s_unauthed", "starttls", xmlns_starttls,
|
||||
function (session, stanza)
|
||||
if session.conn.starttls then
|
||||
print("Wants to do TLS...");
|
||||
send(session, st.stanza("proceed", { xmlns = xmlns_starttls }));
|
||||
session.connhandler = new_connhandler("xmpp-client", session);
|
||||
session.notopen = true;
|
||||
if session.conn.starttls() then
|
||||
print("Done");
|
||||
else
|
||||
print("Failed");
|
||||
end
|
||||
|
||||
end
|
||||
end);
|
||||
|
||||
add_event_hook("stream-features",
|
||||
function (session, features)
|
||||
if session.conn.starttls then
|
||||
t_insert(features, "<starttls xmlns='"..xmlns_starttls.."'/>");
|
||||
end
|
||||
end);
|
Loading…
Add table
Add a link
Reference in a new issue