Method: Protocol::HTTP2::Connection#encode_headers

Defined in:
lib/protocol/http2/connection.rb

#encode_headers(headers, buffer = String.new.b) ⇒ Object



112
113
114
115
116
# File 'lib/protocol/http2/connection.rb', line 112

def encode_headers(headers, buffer = String.new.b)
	HPACK::Compressor.new(buffer, @encoder).encode(headers)
	
	return buffer
end