mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_websocket: Make open_stream method behave like the one from util.xmppstream
This commit is contained in:
parent
f6e6bc0bd9
commit
fd19cd42b0
1 changed files with 5 additions and 2 deletions
|
@ -51,14 +51,17 @@ local sessions = module:shared("c2s/sessions");
|
||||||
local c2s_listener = portmanager.get_service("c2s").listener;
|
local c2s_listener = portmanager.get_service("c2s").listener;
|
||||||
|
|
||||||
--- Session methods
|
--- Session methods
|
||||||
local function session_open_stream(session)
|
local function session_open_stream(session, from, to)
|
||||||
local attr = {
|
local attr = {
|
||||||
xmlns = xmlns_framing,
|
xmlns = xmlns_framing,
|
||||||
["xml:lang"] = "en",
|
["xml:lang"] = "en",
|
||||||
version = "1.0",
|
version = "1.0",
|
||||||
id = session.streamid or "",
|
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));
|
session.send(st.stanza("open", attr));
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue