about summary refs log tree commit homepage
path: root/lib/unicorn/const.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-02-05 15:16:18 -0800
committerEric Wong <normalperson@yhbt.net>2009-02-09 19:50:44 -0800
commita1c7992d47ac820c64604b8aeb8779a0bf741fcf (patch)
treeb40dd375c1de2abbb38e17a1e3f6041915aa518f /lib/unicorn/const.rb
parent07846bcac6604babf0dd1f296d99c148b63340d6 (diff)
downloadunicorn-a1c7992d47ac820c64604b8aeb8779a0bf741fcf.tar.gz
The previous API was very flexible, but I don't think many
people really cared for it... We now repeatedly use the
same HeaderOut in each process since I completely don't
care for multithreading.
Diffstat (limited to 'lib/unicorn/const.rb')
-rw-r--r--lib/unicorn/const.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/unicorn/const.rb b/lib/unicorn/const.rb
index b44bb29..8e52d4b 100644
--- a/lib/unicorn/const.rb
+++ b/lib/unicorn/const.rb
@@ -113,6 +113,7 @@ module Unicorn
     HTTP_IF_NONE_MATCH="HTTP_IF_NONE_MATCH".freeze
     REDIRECT = "HTTP/1.1 302 Found\r\nLocation: %s\r\nConnection: close\r\n\r\n".freeze
     HOST = "HOST".freeze
+    CONNECTION = "Connection".freeze
   end
 
 end