blob: f32f293f83c7045c5edfcff9ca740f598b38bdfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/dns/dns_config_service.h"
#include "net/base/ip_endpoint.h"
namespace net {
// Default values are taken from glibc resolv.h.
DnsConfig::DnsConfig()
: ndots(1),
timeout(base::TimeDelta::FromSeconds(5)),
attempts(2),
rotate(false),
edns0(false) {}
DnsConfig::~DnsConfig() {}
bool DnsConfig::Equals(const DnsConfig& d) const {
return (nameservers == d.nameservers) &&
(search == d.search) &&
(ndots == d.ndots) &&
(timeout == d.timeout) &&
(attempts == d.attempts) &&
(rotate == d.rotate) &&
(edns0 == d.edns0);
}
} // namespace net
|