class Protocol::HPACK::Decompressor

def read_byte

def read_byte
	if byte = @buffer.getbyte(@offset)
		@offset += 1
	end
	
	return byte
end