aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2013-06-07 17:47:49 +0100
committerMatthew Wild <mwild1@gmail.com>2013-06-07 17:47:49 +0100
commitfea7fdbaedb7faa730356a01f1c42193f7fc1a50 (patch)
treed40e76b9d645b760e632b498675b06f3073e3951 /plugins
parent4364aa2b989717a299325b716b8246612d8393d3 (diff)
downloadprosody-fea7fdbaedb7faa730356a01f1c42193f7fc1a50.tar.gz
prosody-fea7fdbaedb7faa730356a01f1c42193f7fc1a50.zip
mod_bosh: Remove Connection: keep-alive header (conflicts with new net.http.server)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_bosh.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua
index f2b7f458..b88cd969 100644
--- a/plugins/mod_bosh.lua
+++ b/plugins/mod_bosh.lua
@@ -36,7 +36,7 @@ local bosh_max_wait = module:get_option_number("bosh_max_wait", 120);
local consider_bosh_secure = module:get_option_boolean("consider_bosh_secure");
-local default_headers = { ["Content-Type"] = "text/xml; charset=utf-8", ["Connection"] = "keep-alive" };
+local default_headers = { ["Content-Type"] = "text/xml; charset=utf-8" };
local cross_domain = module:get_option("cross_domain_bosh", false);
if cross_domain then