# File lib/rubytorrent/tracker.rb, line 108
  def initialize(url, info_hash, length, port, peer_id, ip=nil, numwant=50, http_proxy=ENV["http_proxy"])
    @url = url
    @hash = info_hash
    @length = length
    @port = port
    @uploaded = @downloaded = @left = 0
    @ip = ip
    @numwant = numwant
    @peer_id = peer_id
    @http_proxy = http_proxy
    @state = :stopped
    @sent_completed = false
    @last_conn_time = nil
    @tracker_data = nil
    @compact = true
    @in_force_refresh = false
  end