Sha256: 80ed2aafd682edafe24ef6b3dd218710b90f336898fc263bf57228201a67d3cb
Contents?: true
Size: 1.3 KB
Versions: 5
Compression:
Stored size: 1.3 KB
Contents
# frozen_string_literal: true # Released under the MIT License. # Copyright, 2019-2023, by Samuel Williams. require_relative 'frame' module Protocol module HTTP2 NO_ERROR = 0 PROTOCOL_ERROR = 1 INTERNAL_ERROR = 2 FLOW_CONTROL_ERROR = 3 TIMEOUT = 4 STREAM_CLOSED = 5 FRAME_SIZE_ERROR = 6 REFUSED_STREAM = 7 CANCEL = 8 COMPRESSION_ERROR = 9 CONNECT_ERROR = 10 ENHANCE_YOUR_CALM = 11 INADEQUATE_SECURITY = 12 HTTP_1_1_REQUIRED = 13 # The RST_STREAM frame allows for immediate termination of a stream. RST_STREAM is sent to request cancellation of a stream or to indicate that an error condition has occurred. # # +---------------------------------------------------------------+ # | Error Code (32) | # +---------------------------------------------------------------+ # class ResetStreamFrame < Frame TYPE = 0x3 FORMAT = "N".freeze def unpack @payload.unpack1(FORMAT) end def pack(error_code = NO_ERROR) @payload = [error_code].pack(FORMAT) @length = @payload.bytesize end def apply(connection) connection.receive_reset_stream(self) end def read_payload(stream) super if @length != 4 raise FrameSizeError, "Invalid frame length" end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems