class Falcon::Adapters::Rack
def unwrap_headers(headers, env)
def unwrap_headers(headers, env) headers.each do |key, value| http_key = "HTTP_#{key.upcase.tr('-', '_')}" if current_value = env[http_key] env[http_key] = "#{current_value}\n#{value}" else env[http_key] = value end end end