# File lib/dnstraverse/fingerprint.rb, line 139
    def decode_query(querystr)
      qname, qclass, qtype = querystr.split(/\s+/)
      if qtype == "CLASS0" then # crappy data
        qtype = qclass
        qclass = "CLASS0"
      end
      q = Dnsruby::Question.new(qname, qtype, qclass)
      return q
    end