From: Steven Barth Date: Wed, 27 May 2009 19:12:58 +0000 (+0000) Subject: http/1.1 detection X-Git-Tag: 0.9.0~303 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=693366bdd8cca7227976b3d3889bb0cf4dcfe9db;p=oweals%2Fluci.git http/1.1 detection --- diff --git a/libs/lucid-http/luasrc/lucid/http/server.lua b/libs/lucid-http/luasrc/lucid/http/server.lua index 008fd1fc2..21a752c68 100644 --- a/libs/lucid-http/luasrc/lucid/http/server.lua +++ b/libs/lucid-http/luasrc/lucid/http/server.lua @@ -453,7 +453,7 @@ function Server.process(self, client, env) end end if not headers["Content-Length"] then - if message.http_version == 1.1 then + if message.env.SERVER_PROTOCOL == "HTTP/1.1" then headers["Transfer-Encoding"] = "chunked" sinkout = chunksink(client) else