blob: 08e8b7bcf867b79ff73a37417c386a8a43f85e26 [file] [log] [blame]
// 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.
module network.mojom;
import "services/network/public/mojom/ip_endpoint.mojom";
// Mirror of net::AddressList.
struct AddressList {
array<IPEndPoint> addresses;
// The first entry of `dns_aliases`, if it exists, is the canonical name.
// The alias chain is preserved in reverse order, from canonical name (i.e.
// address record name) through to query name.
array<string> dns_aliases;
};