chromium/net/dns/public/host_resolver_results.cc

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

#include "net/dns/public/host_resolver_results.h"

#include <stdint.h>

#include <optional>
#include <string>
#include <utility>

#include "base/numerics/safe_conversions.h"
#include "base/values.h"
#include "net/base/connection_endpoint_metadata.h"
#include "net/base/ip_address.h"
#include "net/base/ip_endpoint.h"

namespace net {

HostResolverEndpointResult::HostResolverEndpointResult() = default;
HostResolverEndpointResult::~HostResolverEndpointResult() = default;
HostResolverEndpointResult::HostResolverEndpointResult(
    const HostResolverEndpointResult&) = default;
HostResolverEndpointResult::HostResolverEndpointResult(
    HostResolverEndpointResult&&) = default;

ServiceEndpoint::ServiceEndpoint() = default;
ServiceEndpoint::~ServiceEndpoint() = default;

ServiceEndpoint::ServiceEndpoint(std::vector<IPEndPoint> ipv4_endpoints,
                                 std::vector<IPEndPoint> ipv6_endpoints,
                                 ConnectionEndpointMetadata metadata)
    :{}

ServiceEndpoint::ServiceEndpoint(const ServiceEndpoint&) = default;
ServiceEndpoint::ServiceEndpoint(ServiceEndpoint&&) = default;

base::Value::Dict ServiceEndpoint::ToValue() const {}

}  // namespace net