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:
Kim Alvefur 2019-12-17 00:34:39 +01:00
parent 6b533ad772
commit ad26a3b047

View file

@ -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