summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2025-04-16 14:51:36 -0500
committerJohn Estabrook <jestabro@vyos.io>2025-05-12 11:26:41 -0500
commitc6a09cc9fce42323d86d2f4e161a894cdc970a24 (patch)
tree0d82f98183bbf16d6a4a6d5c5c4d32c29eb3f24f /data
parentc508c8c66c76488337745cf151d9570c42e38a3b (diff)
downloadvyconf-c6a09cc9fce42323d86d2f4e161a894cdc970a24.tar.gz
vyconf-c6a09cc9fce42323d86d2f4e161a894cdc970a24.zip
T7363: track process id in session data
In practice, this may be passed in the request as the ppid, as needed for CLI applications to coordinate with the ambient config session. For other uses, the client pid will suffice.
Diffstat (limited to 'data')
-rw-r--r--data/vyconf.proto5
1 files changed, 3 insertions, 2 deletions
diff --git a/data/vyconf.proto b/data/vyconf.proto
index 5e9d0ff..f77b035 100644
--- a/data/vyconf.proto
+++ b/data/vyconf.proto
@@ -13,8 +13,9 @@ message Request {
}
message SetupSession {
- optional string ClientApplication = 1;
- optional int32 OnBehalfOf = 2;
+ required int32 ClientPid = 1;
+ optional string ClientApplication = 2;
+ optional int32 OnBehalfOf = 3;
}
message Teardown {