Sha256: 8734581254605c2560b813cc042169cd6dacd088cba531828bfc59fe13912d21

Contents?: true

Size: 1.51 KB

Versions: 9

Compression:

Stored size: 1.51 KB

Contents

# frozen_string_literal: true

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

require_relative "frame"
require_relative "padded"
require_relative "continuation_frame"

module Protocol
	module HTTP2
		# The PUSH_PROMISE frame is used to notify the peer endpoint in advance of streams the sender intends to initiate. The PUSH_PROMISE frame includes the unsigned 31-bit identifier of the stream the endpoint plans to create along with a set of headers that provide additional context for the stream.
		# 
		# +---------------+
		# |Pad Length? (8)|
		# +-+-------------+-----------------------------------------------+
		# |R|                  Promised Stream ID (31)                    |
		# +-+-----------------------------+-------------------------------+
		# |                   Header Block Fragment (*)                 ...
		# +---------------------------------------------------------------+
		# |                           Padding (*)                       ...
		# +---------------------------------------------------------------+
		#
		class PushPromiseFrame < Frame
			include Continued, Padded
			
			TYPE = 0x5
			FORMAT = "N".freeze
			
			def unpack
				data = super
				
				stream_id = data.unpack1(FORMAT)
				
				return stream_id, data.byteslice(4, data.bytesize - 4)
			end
			
			def pack(stream_id, data, *arguments, **options)
				super([stream_id].pack(FORMAT) + data, *arguments, **options)
			end
			
			def apply(connection)
				connection.receive_push_promise(self)
			end
		end
	end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
protocol-http2-0.22.1 lib/protocol/http2/push_promise_frame.rb
protocol-http2-0.22.0 lib/protocol/http2/push_promise_frame.rb
protocol-http2-0.21.0 lib/protocol/http2/push_promise_frame.rb
protocol-http2-0.20.0 lib/protocol/http2/push_promise_frame.rb
protocol-http2-0.19.4 lib/protocol/http2/push_promise_frame.rb
protocol-http2-0.19.3 lib/protocol/http2/push_promise_frame.rb
protocol-http2-0.19.2 lib/protocol/http2/push_promise_frame.rb
protocol-http2-0.19.1 lib/protocol/http2/push_promise_frame.rb
protocol-http2-0.19.0 lib/protocol/http2/push_promise_frame.rb