Annotate

core/s2smanager.lua @ 149:40e443eacbbd

Partial s2s commit
author Matthew Wild <mwild1@gmail.com>
date Fri, 24 Oct 2008 07:34:13 +0100
child 157:f4e9b6ec34b0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
149
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
1
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
2 local hosts = hosts;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
3 local sessions = sessions;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
4 local socket = require "socket";
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
5 local format = string.format;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
6 local tostring, pairs, ipairs, getmetatable, print, newproxy, error, tonumber
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
7 = tostring, pairs, ipairs, getmetatable, print, newproxy, error, tonumber;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
8
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
9 local connlisteners_get = require "net.connlisteners".get;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
10 local wraptlsclient = require "net.server".wraptlsclient;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
11 local modulemanager = require "core.modulemanager";
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
12
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
13 local uuid_gen = require "util.uuid".generate;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
14
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
15 local logger_init = require "util.logger".init;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
16
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
17 local log = logger_init("s2smanager");
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
18
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
19 local md5_hash = require "util.hashes".md5;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
20
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
21 local dialback_secret = "This is very secret!!! Ha!";
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
22
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
23 module "s2smanager"
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
24
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
25 function connect_host(from_host, to_host)
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
26 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
27
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
28 function send_to_host(from_host, to_host, data)
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
29 if hosts[to_host] then
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
30 -- Write to connection
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
31 hosts[to_host].send(data);
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
32 log("debug", "stanza sent over s2s");
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
33 else
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
34 log("debug", "opening a new outgoing connection for this stanza");
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
35 local host_session = new_outgoing(from_host, to_host);
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
36 -- Store in buffer
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
37 host_session.sendq = { data };
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
38 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
39 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
40
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
41 function disconnect_host(host)
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
42
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
43 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
44
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
45 local open_sessions = 0;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
46
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
47 function new_incoming(conn)
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
48 local session = { conn = conn, priority = 0, type = "s2sin_unauthed", direction = "incoming" };
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
49 if true then
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
50 session.trace = newproxy(true);
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
51 getmetatable(session.trace).__gc = function () open_sessions = open_sessions - 1; print("s2s session got collected, now "..open_sessions.." s2s sessions are allocated") end;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
52 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
53 open_sessions = open_sessions + 1;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
54 local w = conn.write;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
55 session.send = function (t) w(tostring(t)); end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
56 return session;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
57 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
58
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
59 function new_outgoing(from_host, to_host)
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
60 local host_session = { to_host = to_host, from_host = from_host, notopen = true, type = "s2sout_unauthed", direction = "outgoing" };
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
61 hosts[to_host] = host_session;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
62
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
63 local cl = connlisteners_get("xmppserver");
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
64
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
65 local conn, handler = socket.tcp()
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
66 --FIXME: Below parameters (ports/ip) are incorrect (use SRV)
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
67 conn:connect(to_host, 5269);
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
68 conn = wraptlsclient(cl, conn, to_host, 5269, 0, 1, hosts[from_host].ssl_ctx );
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
69 host_session.conn = conn;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
70
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
71 -- Register this outgoing connection so that xmppserver_listener knows about it
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
72 -- otherwise it will assume it is a new incoming connection
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
73 cl.register_outgoing(conn, host_session);
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
74
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
75 do
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
76 local conn_name = "s2sout"..tostring(conn):match("[a-f0-9]*$");
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
77 host_session.log = logger_init(conn_name);
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
78 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
79
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
80 local w = conn.write;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
81 host_session.send = function (t) w(tostring(t)); end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
82
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
83 conn.write(format([[<stream:stream xmlns='jabber:server' xmlns:db='jabber:server:dialback' xmlns:stream='http://etherx.jabber.org/streams' from='%s' to='%s' version='1.0'>]], from_host, to_host));
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
84
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
85 return host_session;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
86 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
87
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
88 function streamopened(session, attr)
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
89 session.log("debug", "s2s stream opened");
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
90 local send = session.send;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
91
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
92 session.version = tonumber(attr.version) or 0;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
93 if session.version >= 1.0 and not (attr.to and attr.from) then
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
94 print("to: "..tostring(attr.to).." from: "..tostring(attr.from));
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
95 --error(session.to_host.." failed to specify 'to' or 'from' hostname as per RFC");
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
96 log("warn", (session.to_host or "(unknown)").." failed to specify 'to' or 'from' hostname as per RFC");
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
97 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
98
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
99 if session.direction == "incoming" then
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
100 -- Send a reply stream header
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
101
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
102 for k,v in pairs(attr) do print("", tostring(k), ":::", tostring(v)); end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
103
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
104 session.to_host = attr.to;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
105 session.from_host = attr.from;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
106
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
107 session.streamid = uuid_gen();
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
108 print(session, session.from_host, "incoming s2s stream opened");
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
109 send("<?xml version='1.0'?>");
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
110 send(format("<stream:stream xmlns='jabber:server' xmlns:db='jabber:server:dialback' xmlns:stream='http://etherx.jabber.org/streams' id='%s' from='%s'>", session.streamid, session.to_host));
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
111 if session.from_host then
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
112 -- Need to perform dialback to check identity
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
113 print("to: "..tostring(attr.to).." from: "..tostring(attr.from));
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
114 print("Need to do dialback here you know!!");
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
115 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
116 elseif session.direction == "outgoing" then
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
117 -- If we are just using the connection for verifying dialback keys, we won't try and auth it
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
118 if not session.dialback_verifying then
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
119 -- generate dialback key
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
120 if not attr.id then error("stream response did not give us a streamid!!!"); end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
121 session.streamid = attr.id;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
122 session.dialback_key = generate_dialback(session.streamid, session.to_host, session.from_host);
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
123 session.send(format("<db:result from='%s' to='%s'>%s</db:result>", session.from_host, session.to_host, session.dialback_key));
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
124 session.log("info", "sent dialback key on outgoing s2s stream");
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
125 else
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
126 mark_connected(session);
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
127 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
128 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
129 --[[
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
130 local features = {};
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
131 modulemanager.fire_event("stream-features-s2s", session, features);
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
132
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
133 send("<stream:features>");
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
134
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
135 for _, feature in ipairs(features) do
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
136 send(tostring(feature));
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
137 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
138
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
139 send("</stream:features>");]]
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
140 log("info", "s2s stream opened successfully");
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
141 session.notopen = nil;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
142 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
143
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
144 function generate_dialback(id, to, from)
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
145 return md5_hash(id..to..from..dialback_secret); -- FIXME: See XEP-185 and XEP-220
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
146 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
147
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
148 function verify_dialback(id, to, from, key)
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
149 return key == generate_dialback(id, to, from);
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
150 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
151
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
152 function make_authenticated(session)
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
153 if session.type == "s2sout_unauthed" then
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
154 session.type = "s2sout";
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
155 elseif session.type == "s2sin_unauthed" then
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
156 session.type = "s2sin";
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
157 else
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
158 return false;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
159 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
160 session.log("info", "connection is now authenticated");
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
161
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
162 mark_connected(session);
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
163
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
164 return true;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
165 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
166
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
167 function mark_connected(session)
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
168 local sendq, send = session.sendq, session.send;
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
169 if sendq then
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
170 session.log("debug", "sending queued stanzas across new connection");
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
171 for _, data in ipairs(sendq) do
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
172 session.log("debug", "sending: %s", tostring(data));
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
173 send(data);
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
174 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
175 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
176 end
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
177
40e443eacbbd Partial s2s commit
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
178 return _M;