mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +03:00
Merge 0.9->0.10
This commit is contained in:
commit
b294f1695c
1 changed files with 9 additions and 2 deletions
|
@ -49,12 +49,19 @@ local stream_xmlns_attr = {xmlns='urn:ietf:params:xml:ns:xmpp-streams'};
|
|||
|
||||
function stream_callbacks.streamopened(session, attr)
|
||||
local send = session.send;
|
||||
session.host = nameprep(attr.to);
|
||||
if not session.host then
|
||||
local host = nameprep(attr.to);
|
||||
if not host then
|
||||
session:close{ condition = "improper-addressing",
|
||||
text = "A valid 'to' attribute is required on stream headers" };
|
||||
return;
|
||||
end
|
||||
if not session.host then
|
||||
session.host = host;
|
||||
elseif session.host ~= host then
|
||||
session:close{ condition = "not-authorized",
|
||||
text = "The 'to' attribute must remain the same across stream restarts" };
|
||||
return;
|
||||
end
|
||||
session.version = tonumber(attr.version) or 0;
|
||||
session.streamid = uuid_generate();
|
||||
(session.log or session)("debug", "Client sent opening <stream:stream> to %s", session.host);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue