chromium/services/network/public/mojom/host_resolver_endpoint_result.mojom

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

module network.mojom;

import "services/network/public/mojom/ip_endpoint.mojom";
import "services/network/public/mojom/connection_endpoint_metadata.mojom";

// Mirror of net::HostResolverEndpointResult.
struct HostResolverEndpointResult {
  array<IPEndPoint> ip_endpoints;
  ConnectionEndpointMetadata metadata;
};