# File lib/dnstraverse/referral.rb, line 49
    def ips_as_array
      return EMPTY_ARRAY unless @serverips
      my_ips = []
      for ip in @serverips do
        my_ips << ip unless ip =~ /^key:/
      end
      return my_ips
    end