mod_websocket: Make open_stream method behave like the one from util.xmppstream

This commit is contained in:
Kim Alvefur 2017-03-02 03:03:25 +01:00
parent f6e6bc0bd9
commit fd19cd42b0

View file

@ -51,14 +51,17 @@ local sessions = module:shared("c2s/sessions");
local c2s_listener = portmanager.get_service("c2s").listener;
--- Session methods
local function session_open_stream(session)
local function session_open_stream(session, from, to)
local attr = {
xmlns = xmlns_framing,
["xml:lang"] = "en",
version = "1.0",
id = session.streamid or "",
from = session.host
from = from or session.host, to = to,
};
if session.stream_attrs then
session:stream_attrs(from, to, attr)
end
session.send(st.stanza("open", attr));
end