class Protocol::HPACK::Decompressor

def read_bytes(length)

def read_bytes(length)
	slice = @buffer.byteslice(@offset, length)
	
	@offset += length
	
	return slice
end