plugins/mod_bosh.lua
changeset 3449 0a74ce129a06
parent 3448 0ca7c3864431
child 3450 4bd78a5fee75
equal deleted inserted replaced
3448:0ca7c3864431 3449:0a74ce129a06
    23 local log = logger.init("mod_bosh");
    23 local log = logger.init("mod_bosh");
    24 
    24 
    25 local xmlns_streams = "http://etherx.jabber.org/streams";
    25 local xmlns_streams = "http://etherx.jabber.org/streams";
    26 local xmlns_xmpp_streams = "urn:ietf:params:xml:ns:xmpp-streams";
    26 local xmlns_xmpp_streams = "urn:ietf:params:xml:ns:xmpp-streams";
    27 local xmlns_bosh = "http://jabber.org/protocol/httpbind"; -- (hard-coded into a literal in session.send)
    27 local xmlns_bosh = "http://jabber.org/protocol/httpbind"; -- (hard-coded into a literal in session.send)
    28 local stream_callbacks = { stream_ns = "http://jabber.org/protocol/httpbind", stream_tag = "body", default_ns = "jabber:client" };
    28 
       
    29 local stream_callbacks = {
       
    30 	stream_ns = xmlns_bosh, stream_tag = "body", default_ns = "jabber:client" };
    29 
    31 
    30 local BOSH_DEFAULT_HOLD = tonumber(module:get_option("bosh_default_hold")) or 1;
    32 local BOSH_DEFAULT_HOLD = tonumber(module:get_option("bosh_default_hold")) or 1;
    31 local BOSH_DEFAULT_INACTIVITY = tonumber(module:get_option("bosh_max_inactivity")) or 60;
    33 local BOSH_DEFAULT_INACTIVITY = tonumber(module:get_option("bosh_max_inactivity")) or 60;
    32 local BOSH_DEFAULT_POLLING = tonumber(module:get_option("bosh_max_polling")) or 5;
    34 local BOSH_DEFAULT_POLLING = tonumber(module:get_option("bosh_max_polling")) or 5;
    33 local BOSH_DEFAULT_REQUESTS = tonumber(module:get_option("bosh_max_requests")) or 2;
    35 local BOSH_DEFAULT_REQUESTS = tonumber(module:get_option("bosh_max_requests")) or 2;