class Falcon::Adapters::Response

def initialize(status, headers, body, protocol = nil)

@parameter protocol [String] The response protocol for upgraded requests.
@parameter body [Protocol::HTTP::Body] The response body.
@parameter headers [Protocol::HTTP::Headers] The response headers.
@parameter status [Integer] The response status.
Initialize the response wrapper.
def initialize(status, headers, body, protocol = nil)
	super(nil, status, headers, body, protocol)
end