chromium/net/dns/dns_config.h

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef NET_DNS_DNS_CONFIG_H_
#define NET_DNS_DNS_CONFIG_H_

#include <memory>
#include <string>
#include <vector>

#include "base/time/time.h"
#include "base/values.h"
#include "net/base/ip_endpoint.h"
#include "net/base/net_export.h"
#include "net/dns/dns_hosts.h"
#include "net/dns/public/dns_over_https_config.h"
#include "net/dns/public/secure_dns_mode.h"

namespace net {

constexpr base::TimeDelta kDnsDefaultFallbackPeriod =;

// DnsConfig stores configuration of the system resolver.
struct NET_EXPORT DnsConfig {};

}  // namespace net

#endif  // NET_DNS_DNS_CONFIG_H_