39 lines
1.3 KiB
C++
39 lines
1.3 KiB
C++
// Copyright 2019 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_PUBLIC_RESOLVE_ERROR_INFO_H_
|
|
#define NET_DNS_PUBLIC_RESOLVE_ERROR_INFO_H_
|
|
|
|
#include "net/base/net_errors.h"
|
|
#include "net/base/net_export.h"
|
|
|
|
namespace net {
|
|
|
|
// Host resolution error info.
|
|
struct NET_EXPORT ResolveErrorInfo {
|
|
ResolveErrorInfo();
|
|
explicit ResolveErrorInfo(int resolve_error,
|
|
bool is_secure_network_error = false);
|
|
ResolveErrorInfo(const ResolveErrorInfo& resolve_error_info);
|
|
ResolveErrorInfo(ResolveErrorInfo&& other);
|
|
|
|
ResolveErrorInfo& operator=(const ResolveErrorInfo& other);
|
|
ResolveErrorInfo& operator=(ResolveErrorInfo&& other);
|
|
|
|
bool operator==(const ResolveErrorInfo& other) const;
|
|
bool operator!=(const ResolveErrorInfo& other) const;
|
|
|
|
int error = net::OK;
|
|
// Whether |error| resulted from a DNS-over-HTTPS lookup. If an answer was
|
|
// obtained from the cache this field will be false, regardless of whether the
|
|
// answer was originally obtained securely, because this field is intended to
|
|
// identify secure DNS *network* failures. This field will also always be
|
|
// false if |error| is net::OK.
|
|
bool is_secure_network_error = false;
|
|
};
|
|
|
|
} // namespace net
|
|
|
|
#endif // NET_DNS_PUBLIC_RESOLVE_ERROR_INFO_H_
|