xref: /aosp_15_r20/external/openscreen/cast/cast_core/api/common/service_info.proto (revision 3f982cf4871df8771c9d4abe6e9a6f8d829b2736)
1// Copyright 2021 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4//
5// **** DO NOT EDIT - this file was automatically generated. ****
6syntax = "proto3";
7
8package cast.common;
9
10option optimize_for = LITE_RUNTIME;
11
12// A Cast service info.
13message ServiceInfo {
14  oneof endpoint_address {
15    // gRPC endpoint (http://, unix:/ etc).
16    string grpc_endpoint = 1;
17  }
18}
19