summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2009-10-26 17:55:08 +0000
committerSteven Barth <steven@midlink.org>2009-10-26 17:55:08 +0000
commit92bbfc8ca837a6c447fc8402789123cfa81c92ed (patch)
tree1d82996eda84213231ef91d30792c9eeb5fab35b
parent36e18e87ef0f9fc81124c9e0ee46127ee755af19 (diff)
Be a bit more non-standard
-rw-r--r--libs/lucid-http/luasrc/lucid/http/server.lua5
1 files changed, 1 insertions, 4 deletions
diff --git a/libs/lucid-http/luasrc/lucid/http/server.lua b/libs/lucid-http/luasrc/lucid/http/server.lua
index 284c6a03e..bc8d53168 100644
--- a/libs/lucid-http/luasrc/lucid/http/server.lua
+++ b/libs/lucid-http/luasrc/lucid/http/server.lua
@@ -529,11 +529,8 @@ function Server.process(self, client, env)
if close then
headers["Connection"] = "close"
- elseif message.env.SERVER_PROTOCOL == "HTTP/1.0" then
+ else
headers["Connection"] = "Keep-Alive"
- end
-
- if not close then
headers["Keep-Alive"] = "timeout=5, max=50"
end