class Protocol::HPACK::Context

def add_to_table(command)

Parameters:
  • command (Array) -- +[name, value]+
def add_to_table(command)
	return unless size_check(command)
	
	command.each(&:freeze)
	command.freeze
	
	@table.unshift(command)
	@current_table_size += entry_size(command)
end