aboutsummaryrefslogtreecommitdiffstats
path: root/net
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
commit40216ec868d648da239e75ff1f719cae18ee531d (patch)
treef554bec7c8bdc63aa7b22238a59c5e6bb6b73ef3 /net
parent09c3308b84275a9a222413cfa332229704388985 (diff)
downloadprosody-40216ec868d648da239e75ff1f719cae18ee531d.tar.gz
prosody-40216ec868d648da239e75ff1f719cae18ee531d.zip
net.http.server: Fix Keep-Alive requests with HTTP 1.0
Diffstat (limited to 'net')
-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;