method
read_status_line
read_status_line(sock)
private
Hide source
# File lib/net/http/response.rb, line 38 def read_status_line(sock) str = sock.readline m = /\AHTTP(?:\/(\d+\.\d+))?\s+(\d\d\d)(?:\s+(.*))?\z/n.match(str) or raise Net::HTTPBadResponse, "wrong status line: #{str.dump}" m.captures end