class Protocol::HPACK::Context

def compute_current_table_size

Returns:
  • (Integer) -
def compute_current_table_size
	@table.sum { |k, v| k.bytesize + v.bytesize + 32 }
end