# File lib/dnstraverse/referral.rb, line 411
    def replace_child(before, after)
      @children.each_key do | ip |
        @children[ip].map! { |c| c.equal?(before) ? after : c }
      end
    end