method
read_status_line
v2_6_3 -
Show latest stable
- Class:
Net::HTTPResponse
read_status_line(sock)private
No documentation available.
# File lib/net/http/response.rb, line 39
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