# HG changeset patch # User Matthew Wild # Date 1278268713 -3600 # Node ID c4e107e7c88380e168f33666eb1f46ec62a7e154 # Parent dcdfc04f9e3aaf559ff7fe94b2e3372734a645b7 mod_bosh: Add jabber:client namespace to stanzas with no namespace diff -r dcdfc04f9e3a -r c4e107e7c883 plugins/mod_bosh.lua --- a/plugins/mod_bosh.lua Sun Jul 04 19:16:20 2010 +0100 +++ b/plugins/mod_bosh.lua Sun Jul 04 19:38:33 2010 +0100 @@ -190,6 +190,11 @@ local r, send_buffer = session.requests, session.send_buffer; local response = { headers = default_headers } function session.send(s) + -- We need to ensure that outgoing stanzas have the jabber:client xmlns + if s.attr and not s.attr.xmlns then + s = st.clone(s); + s.attr.xmlns = "jabber:client"; + end --log("debug", "Sending BOSH data: %s", tostring(s)); local oldest_request = r[1]; if oldest_request then