class Async::HTTP::Protocol::HTTP11
def read_response
def read_response version, status, reason = read_line.split(/\s+/, 3) headers = read_headers body = read_body(headers) @count += 1 @persistent = persistent?(headers) return version, Integer(status), reason, headers, body end