platform: Expose process info

This commit is contained in:
世界
2025-12-27 20:13:01 +08:00
parent 494990f914
commit 4e94a64dcc
5 changed files with 216 additions and 80 deletions

View File

@@ -189,6 +189,15 @@ message Connection {
string outbound = 19;
string outboundType = 20;
repeated string chainList = 21;
ProcessInfo processInfo = 22;
}
message ProcessInfo {
uint32 processId = 1;
int32 userId = 2;
string userName = 3;
string processPath = 4;
string packageName = 5;
}
message CloseConnectionRequest {