Sha256: a95c466a38227d250b0e1633136530dd5a6a8458042e94b102e38e81bcc9114d

Contents?: true

Size: 661 Bytes

Versions: 23

Compression:

Stored size: 661 Bytes

Contents

# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2017-2023, 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
					if connection = self.connection
						connection.peer
					end
				end
				
				def remote_address
					@remote_address ||= peer.remote_address
				end
				
				def remote_address= value
					@remote_address = value
				end
			end
		end
	end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
async-http-0.76.0 lib/async/http/protocol/response.rb
async-http-0.75.0 lib/async/http/protocol/response.rb
async-http-0.74.0 lib/async/http/protocol/response.rb
async-http-0.73.0 lib/async/http/protocol/response.rb
async-http-0.72.0 lib/async/http/protocol/response.rb
async-http-0.71.0 lib/async/http/protocol/response.rb
async-http-0.70.0 lib/async/http/protocol/response.rb
async-http-0.69.0 lib/async/http/protocol/response.rb
async-http-0.68.0 lib/async/http/protocol/response.rb
async-http-0.67.1 lib/async/http/protocol/response.rb
async-http-0.67.0 lib/async/http/protocol/response.rb
async-http-0.66.2 lib/async/http/protocol/response.rb
async-http-0.66.1 lib/async/http/protocol/response.rb
async-http-0.66.0 lib/async/http/protocol/response.rb
async-http-0.65.1 lib/async/http/protocol/response.rb
async-http-0.65.0 lib/async/http/protocol/response.rb
async-http-0.64.2 lib/async/http/protocol/response.rb
async-http-0.64.1 lib/async/http/protocol/response.rb
async-http-0.64.0 lib/async/http/protocol/response.rb
async-http-0.63.0 lib/async/http/protocol/response.rb