# HG changeset patch # User Matthew Wild # Date 1250019528 -3600 # Node ID 2c72b725384e411941c5ef8e15c64e50a3a2257e # Parent 6587b6c2678e544e662acef555d5cdba8b216048 mod_bosh: Strip BOSH namespace from stanzas to allow for some clients which may send them without the correct xmlns diff -r 6587b6c2678e -r 2c72b725384e plugins/mod_bosh.lua --- a/plugins/mod_bosh.lua Tue Aug 11 20:15:54 2009 +0100 +++ b/plugins/mod_bosh.lua Tue Aug 11 20:38:48 2009 +0100 @@ -21,8 +21,9 @@ local st = require "util.stanza"; local logger = require "util.logger"; local log = logger.init("mod_bosh"); -local stream_callbacks = { stream_tag = "http://jabber.org/protocol/httpbind|body" }; + local xmlns_bosh = "http://jabber.org/protocol/httpbind"; -- (hard-coded into a literal in session.send) +local stream_callbacks = { stream_tag = "http://jabber.org/protocol/httpbind|body", default_ns = xmlns_bosh }; local BOSH_DEFAULT_HOLD = tonumber(module:get_option("bosh_default_hold")) or 1; local BOSH_DEFAULT_INACTIVITY = tonumber(module:get_option("bosh_max_inactivity")) or 60;