class Falcon::Adapters::Rack

def unwrap_headers(headers, env)

Rack separates multiple headers with the same key, into a single field with multiple "lines".
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