class Async::HTTP::Protocol::HTTP1::Connection

def read_line?

def read_line?
	@stream.read_until(CRLF)
rescue => error
	# Bascially, any error will cause the connection to be closed:
	return nil
end