Flowdock
read_status_line(sock) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/net/http.rb, line 2561
      def read_status_line(sock)
        str = sock.readline
        m = /\AHTTP(?:\/(\d+\.\d+))?\s+(\d\d\d)\s*(.*)\z/n.match(str) or
          raise HTTPBadResponse, "wrong status line: #{str.dump}"
        m.captures
      end
Register or log in to add new notes.