mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_proxy65: Don't read data from the connection untill the proxying is activated
This commit is contained in:
parent
339c16a46f
commit
29fce4bb4b
1 changed files with 3 additions and 0 deletions
|
@ -88,6 +88,7 @@ function connlistener.onincoming(conn, data)
|
|||
throttle_sending(transfers[sha].target, conn);
|
||||
end
|
||||
conn:write(string.char(5, 0, 0, 3, sha:len()) .. sha .. string.char(0, 0)); -- VER, REP, RSV, ATYP, BND.ADDR (sha), BND.PORT (2 Byte)
|
||||
conn:lock_read(true)
|
||||
else
|
||||
module:log("warn", "Neither data transfer nor initial connect of a participator of a transfer.")
|
||||
conn.close();
|
||||
|
@ -243,6 +244,8 @@ function handle_to_domain(origin, stanza)
|
|||
elseif(transfers[sha] ~= nil and transfers[sha].initiator ~= nil and transfers[sha].target ~= nil) then
|
||||
origin.send(reply);
|
||||
transfers[sha].activated = true;
|
||||
transfers[sha].target:lock_read(false);
|
||||
transfers[sha].initiator:lock_read(false);
|
||||
end
|
||||
else
|
||||
module:log("error", "activation failed: sid: %s, initiator: %s, target: %s", tostring(sid), tostring(from), tostring(to));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue