diff options
| author | John Estabrook <jestabro@vyos.io> | 2025-09-10 11:39:24 -0500 |
|---|---|---|
| committer | John Estabrook <jestabro@vyos.io> | 2025-09-10 11:39:24 -0500 |
| commit | 895f52e54fe32ba5c98d8bb69c5c8c67ddaad0fc (patch) | |
| tree | 80ec51f795985613e298a286a72ef4be0076bd17 /data | |
| parent | 024de8901245d531a85ef6ba5623aec6e33616d7 (diff) | |
| download | vyconf-895f52e54fe32ba5c98d8bb69c5c8c67ddaad0fc.tar.gz vyconf-895f52e54fe32ba5c98d8bb69c5c8c67ddaad0fc.zip | |
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.
Diffstat (limited to 'data')
| -rw-r--r-- | data/vyconf.proto | 6 |
1 files changed, 3 insertions, 3 deletions
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; } } |
