# File lib/dnstraverse/message_utility.rb, line 167
    def msg_nodata?(msg)
      ns, soa, other = msg_authority(msg)
      if soa.size > 0 or ns.size == 0 then
        Log.debug { "NODATA: soa=#{soa.size} ns=#{ns.size}" }
        return true
      end
      return false
    end