mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 14:47:37 +03:00
mod_s2s: Remove obsolete pre-connect buffer
Originally added in c500d4cb7855 Dead code since the net.connect switch in 756b8821007a
This commit is contained in:
parent
6b533ad772
commit
ad26a3b047
1 changed files with 0 additions and 14 deletions
|
@ -438,20 +438,6 @@ function stream_callbacks._streamopened(session, attr)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Send unauthed buffer
|
|
||||||
-- (stanzas which are fine to send before dialback)
|
|
||||||
-- Note that this is *not* the stanza queue (which
|
|
||||||
-- we can only send if auth succeeds) :)
|
|
||||||
local send_buffer = session.send_buffer;
|
|
||||||
if send_buffer and #send_buffer > 0 then
|
|
||||||
log("debug", "Sending s2s send_buffer now...");
|
|
||||||
for i, data in ipairs(send_buffer) do
|
|
||||||
session.sends2s(tostring(data));
|
|
||||||
send_buffer[i] = nil;
|
|
||||||
end
|
|
||||||
end
|
|
||||||
session.send_buffer = nil;
|
|
||||||
|
|
||||||
-- If server is pre-1.0, don't wait for features, just do dialback
|
-- If server is pre-1.0, don't wait for features, just do dialback
|
||||||
if session.version < 1.0 then
|
if session.version < 1.0 then
|
||||||
if not session.dialback_verifying then
|
if not session.dialback_verifying then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue