lib/async/http/protocol/response.rb



# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2017-2024, by Samuel Williams.

require "protocol/http/response"

require_relative "../body/writable"

module Async
	module HTTP
		module Protocol
			# This is generated by client protocols.
			class Response < ::Protocol::HTTP::Response
				def connection
					nil
				end
				
				def hijack?
					false
				end
				
				def peer
					self.connection&.peer
				end
				
				def remote_address
					self.peer&.remote_address
				end
				
				def inspect
					"#<#{self.class}:0x#{self.object_id.to_s(16)} status=#{status}>"
				end
			end
		end
	end
end