mod_s2s: Clarify that it is stream features that can't be offered (here too)

remotes/origin/0.11
Kim Alvefur 9 years ago
parent c7da30f634
commit ac7a1daba8
  1. 4
      plugins/mod_s2s/mod_s2s.lua

@ -366,8 +366,8 @@ function stream_callbacks.streamopened(session, attr)
log("debug", "Sending stream features: %s", tostring(features));
session.sends2s(features);
else
(session.log or log)("warn", "No features to offer, giving up");
session:close({ condition = "undefined-condition", text = "No features to offer" });
(session.log or log)("warn", "No stream features to offer, giving up");
session:close({ condition = "undefined-condition", text = "No stream features to offer" });
end
end
elseif session.direction == "outgoing" then

Loading…
Cancel
Save