commit | b4e8d45c33f71ea02ff32c4e652611b7c2685df9 | [log] [tgz] |
---|---|---|
author | Seungjae Yoo <seungjaeyoo@google.com> | Mon Dec 30 16:56:47 2024 +0900 |
committer | Seungjae Yoo <seungjaeyoo@google.com> | Mon Dec 30 17:06:45 2024 +0900 |
tree | d16a0ceccede9cda1971ded1f2d0cdfcfec887fe | |
parent | eaf4ff843462bea68e11a6c37d8039920ad70ef3 [diff] [blame] |
Refine schema of ReportVmActivePortsRequest Bug: 382998551 Test: Run VmTerminalApp Change-Id: I3dc31ed162cfc9fd59d5a5e962603a0cc6dcbcbe
diff --git a/libs/debian_service/proto/DebianService.proto b/libs/debian_service/proto/DebianService.proto index 60f20d4..7ab0af7 100644 --- a/libs/debian_service/proto/DebianService.proto +++ b/libs/debian_service/proto/DebianService.proto
@@ -31,8 +31,13 @@ int32 cid = 1; } +// TODO(b/382998551): Add more information about the port. +message ActivePort { + int32 port = 1; +} + message ReportVmActivePortsRequest { - repeated int32 ports = 1; + repeated ActivePort ports = 1; } message ReportVmActivePortsResponse {