mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Merge 0.12->trunk
This commit is contained in:
commit
de4b0b6de2
1 changed files with 2 additions and 2 deletions
|
@ -460,6 +460,7 @@ function stream_callbacks._streamopened(session, attr)
|
|||
end
|
||||
if session.type == "s2sin_unauthed" and to and not session.to_host then
|
||||
session.to_host = to;
|
||||
session.host = to;
|
||||
elseif to ~= session.to_host then
|
||||
session:close({ condition = "improper-addressing", text = "New stream 'to' attribute does not match original" });
|
||||
return;
|
||||
|
@ -885,8 +886,7 @@ end
|
|||
function listener.onreadtimeout(conn)
|
||||
local session = sessions[conn];
|
||||
if session then
|
||||
local host = session.host or session.to_host;
|
||||
return (hosts[host] or prosody).events.fire_event("s2s-read-timeout", { session = session });
|
||||
return (hosts[session.host] or prosody).events.fire_event("s2s-read-timeout", { session = session });
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue