# HG changeset patch # User Matthew Wild # Date 1255041654 -3600 # Node ID a6ca0dcc7b8394a700cf25b2f366c5ad44ff1fb0 # Parent 05adeddf9f1b47a2a7b5a588063c0e8b7f114278 s2smanager: Make s2s-stream-features a per-host event diff -r 05adeddf9f1b -r a6ca0dcc7b83 core/s2smanager.lua --- a/core/s2smanager.lua Thu Oct 08 20:06:07 2009 +0100 +++ b/core/s2smanager.lua Thu Oct 08 23:40:54 2009 +0100 @@ -366,7 +366,12 @@ end if session.version >= 1.0 then local features = st.stanza("stream:features"); - fire_event("s2s-stream-features", session, features); + + if session.to_host then + hosts[session.to_host].events.fire_event("s2s-stream-features", { session = session, features = features }); + else + (session.log or log)("warn", "No 'to' on stream header from %s means we can't offer any features", session.from_host or "unknown host"); + end log("debug", "Sending stream features: %s", tostring(features)); send(features);