# File lib/em-http/http_connection.rb, line 148
    def connection_completed
      @peer = @conn.get_peername

      if @connopts.proxy && @connopts.proxy[:type] == :socks5
        socksify(client.req.uri.host, client.req.uri.port, *@connopts.proxy[:authorization]) { start }
      else
        start
      end
    end