blob: 5142adf12d6de99a4488e98a69da03604e1c6ea6 [file] [log] [blame]
// Copyright 2023 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto2";
option optimize_for = LITE_RUNTIME;
package dns_proxy;
// Message sent from the system proxy to the controller. This is done to set
// /etc/resolv.conf with the proxy addresses.
message ProxyAddrMessage {
// IPv4 and IPv6 addresses of system proxy.
repeated string addrs = 1;
}