• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2021 The ChromiumOS Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5syntax = "proto3";
6
7package chromiumos.test.lab.api;
8
9option go_package = "go.chromium.org/chromiumos/config/go/test/lab/api";
10
11// IP endpoint to a given service port.
12message IpEndpoint {
13  // Contains oneof:
14  //   Hostname that can be resolved via DNS
15  //   IPv4 address in dotted decimal notation.
16  //   IPv6 address in RFC4291 notation.
17  string address = 1;
18  // Service port on the target host
19  int32 port = 2;
20}
21