From 895f52e54fe32ba5c98d8bb69c5c8c67ddaad0fc Mon Sep 17 00:00:00 2001 From: John Estabrook Date: Wed, 10 Sep 2025 11:39:24 -0500 Subject: T7737: replace unuseful session_update_pid with session_exists The request session_update_pid is not useful, possibly dangerous, in the current design. Remove and add a simple session_exists for use in client initialization. --- data/vyconf.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'data') diff --git a/data/vyconf.proto b/data/vyconf.proto index e67312c..9b6c882 100644 --- a/data/vyconf.proto +++ b/data/vyconf.proto @@ -22,8 +22,8 @@ message Request { required int32 client_pid = 1; } - message SessionUpdatePid { - required int32 client_pid = 1; + message SessionExists { + optional int32 dummy = 1; } message GetConfig { @@ -175,7 +175,7 @@ message Request { Discard discard = 25; SessionChanged session_changed = 26; SessionOfPid session_of_pid = 27; - SessionUpdatePid session_update_pid = 28; + SessionExists session_exists = 28; GetConfig get_config = 29; } } -- cgit v1.2.3