summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2025-10-21 15:00:05 -0500
committerJohn Estabrook <jestabro@vyos.io>2025-10-22 19:41:25 -0500
commit73d8ec88cdc559746fa8e5d6ce3dea198cff01ef (patch)
treef3800ebbcf3d10a3ffd697be460b17adf4639ad2 /data
parent916ea4510c35e1e37cf2ff53f48df20a1a1998bf (diff)
downloadvyconf-73d8ec88cdc559746fa8e5d6ce3dea198cff01ef.tar.gz
vyconf-73d8ec88cdc559746fa8e5d6ce3dea198cff01ef.zip
T7910: add request show_sessions to list all session records
Diffstat (limited to 'data')
-rw-r--r--data/vyconf.proto6
1 files changed, 6 insertions, 0 deletions
diff --git a/data/vyconf.proto b/data/vyconf.proto
index 0cd2883..4d36c48 100644
--- a/data/vyconf.proto
+++ b/data/vyconf.proto
@@ -160,6 +160,11 @@ message Request {
optional int32 on_behalf_of = 1;
}
+ message ShowSessions {
+ required bool exclude_self = 1;
+ required bool exclude_other = 2;
+ }
+
oneof msg {
Prompt prompt = 1;
@@ -193,6 +198,7 @@ message Request {
GetConfig get_config = 29;
AuxSet aux_set = 30;
AuxDelete aux_delete = 31;
+ ShowSessions show_sessions = 32;
}
}