aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-07-22 17:28:37 +0200
committerKim Alvefur <zash@zash.se>2013-07-22 17:28:37 +0200
commitbe05320ee781a83815f3a98916d6bbc1520433af (patch)
treef554bec7c8bdc63aa7b22238a59c5e6bb6b73ef3
parent4b9219bd93af6d04b5eda88c113ffe55b96c845a (diff)
downloadprosody-be05320ee781a83815f3a98916d6bbc1520433af.tar.gz
prosody-be05320ee781a83815f3a98916d6bbc1520433af.zip
net.http.server: Fix Keep-Alive requests with HTTP 1.0
-rw-r--r--net/http/server.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/http/server.lua b/net/http/server.lua
index dec7da19..0f379e96 100644
--- a/net/http/server.lua
+++ b/net/http/server.lua
@@ -168,7 +168,7 @@ function handle_request(conn, request, finish_cb)
local conn_header = request.headers.connection;
conn_header = conn_header and ","..conn_header:gsub("[ \t]", ""):lower().."," or ""
local httpversion = request.httpversion
- local persistent = conn_header:find(",Keep-Alive,", 1, true)
+ local persistent = conn_header:find(",keep-alive,", 1, true)
or (httpversion == "1.1" and not conn_header:find(",close,", 1, true));
local response_conn_header;