Send /proc/<pid>/comm value when reporting active ports

Bug: 382998551
Test: Run VmTerminalApp
Test: adb logcat | grep reportVmActivePorts

Change-Id: I0ba2046b040327519a5c5847c9a27e35b6fdedde
diff --git a/libs/debian_service/proto/DebianService.proto b/libs/debian_service/proto/DebianService.proto
index 7ab0af7..43955fa 100644
--- a/libs/debian_service/proto/DebianService.proto
+++ b/libs/debian_service/proto/DebianService.proto
@@ -31,9 +31,9 @@
   int32 cid = 1;
 }
 
-// TODO(b/382998551): Add more information about the port.
 message ActivePort {
   int32 port = 1;
+  string comm = 2;
 }
 
 message ReportVmActivePortsRequest {