plugins/mod_bosh.lua

changeset 2608
68c43aaf681f
parent 2486
f0335b7284b1
child 2925
692b3c6c5bd2
--- a/plugins/mod_bosh.lua	Fri Feb 12 03:50:44 2010 +0500
+++ b/plugins/mod_bosh.lua	Fri Feb 12 04:11:50 2010 +0500
@@ -206,6 +206,7 @@
 		-- Send creation response
 		
 		local features = st.stanza("stream:features");
+		hosts[session.host].events.fire_event("stream-features", { origin = session, features = features });
 		fire_event("stream-features", session, features);
 		--xmpp:version='1.0' xmlns:xmpp='urn:xmpp:xbosh'
 		local response = st.stanza("body", { xmlns = xmlns_bosh,
@@ -257,6 +258,7 @@
 	
 	if session.notopen then
 		local features = st.stanza("stream:features");
+		hosts[session.host].events.fire_event("stream-features", { origin = session, features = features });
 		fire_event("stream-features", session, features);
 		session.send(features);
 		session.notopen = nil;

mercurial