Sha256: b350196e7dbc82abd931998df8b71c068a0435a2acf0b59fd1c570281638a539
Contents?: true
Size: 1.11 KB
Versions: 9
Compression:
Stored size: 1.11 KB
Contents
# frozen_string_literal: true # Released under the MIT License. # Copyright, 2018-2024, by Samuel Williams. # Copyright, 2023, by Josh Huber. require_relative '../response' module Async module HTTP module Protocol module HTTP1 class Response < Protocol::Response def self.read(connection, request) while parts = connection.read_response(request.method) response = self.new(connection, *parts) if response.final? return response end end end UPGRADE = 'upgrade' # @attribute [String] The HTTP response line reason. attr :reason # @parameter reason [String] HTTP response line reason phrase. def initialize(connection, version, status, reason, headers, body) @connection = connection @reason = reason protocol = headers.delete(UPGRADE) super(version, status, headers, body, protocol) end def connection @connection end def hijack? @body.nil? end def hijack! @connection.hijack! end end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems