about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-01-07 20:49:59 -0800
committerEric Wong <normalperson@yhbt.net>2010-01-07 20:49:59 -0800
commit3eb8dd9bd48ae031a90747210c28ece491d1017e (patch)
tree18dd7b1a6e787571f3ece7f7a97445f6c2d9e3e3 /lib
parent19dac8e60e12036b2717cb4933e79ac9efb04d40 (diff)
parent52400de1c9e9437b5c9df899f273485f663bb5b5 (diff)
downloadunicorn-3eb8dd9bd48ae031a90747210c28ece491d1017e.tar.gz
* rack-1.1:
  http_response: disallow blank, multi-value headers
  local.mk.sample: use rack-1.1.0
  bump "rack.version" env to [1,1]
  set env["rack.logger"] for applications
Diffstat (limited to 'lib')
-rw-r--r--lib/unicorn.rb4
-rw-r--r--lib/unicorn/http_request.rb2
-rw-r--r--lib/unicorn/http_response.rb3
3 files changed, 7 insertions, 2 deletions
diff --git a/lib/unicorn.rb b/lib/unicorn.rb
index 69ecf33..7a1ef34 100644
--- a/lib/unicorn.rb
+++ b/lib/unicorn.rb
@@ -250,6 +250,10 @@ module Unicorn
     def stdout_path=(path); redirect_io($stdout, path); end
     def stderr_path=(path); redirect_io($stderr, path); end
 
+    def logger=(obj)
+      HttpRequest::DEFAULTS["rack.logger"] = super
+    end
+
     # sets the path for the PID file of the master process
     def pid=(path)
       if path
diff --git a/lib/unicorn/http_request.rb b/lib/unicorn/http_request.rb
index 31fcc3d..99c11c2 100644
--- a/lib/unicorn/http_request.rb
+++ b/lib/unicorn/http_request.rb
@@ -12,7 +12,7 @@ module Unicorn
       "rack.multiprocess" => true,
       "rack.multithread" => false,
       "rack.run_once" => false,
-      "rack.version" => [1, 0],
+      "rack.version" => [1, 1],
       "SCRIPT_NAME" => "",
 
       # this is not in the Rack spec, but some apps may rely on it
diff --git a/lib/unicorn/http_response.rb b/lib/unicorn/http_response.rb
index 92d4d6d..96e484b 100644
--- a/lib/unicorn/http_response.rb
+++ b/lib/unicorn/http_response.rb
@@ -47,7 +47,8 @@ module Unicorn
         headers.each do |key, value|
           next if SKIP.include?(key.downcase)
           if value =~ /\n/
-            out.concat(value.split(/\n/).map! { |v| "#{key}: #{v}\r\n" })
+            # avoiding blank, key-only cookies with /\n+/
+            out.concat(value.split(/\n+/).map! { |v| "#{key}: #{v}\r\n" })
           else
             out << "#{key}: #{value}\r\n"
           end