diff options
author | John Estabrook <jestabro@vyos.io> | 2025-01-14 12:33:06 -0600 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2025-01-15 18:42:07 -0600 |
commit | 5cb1952f52a8a67905a9361364a0c0823d44ed03 (patch) | |
tree | 96217a1eaf38c910e183c30f2adab865b409e916 /data/vyconf.proto | |
parent | 41bb56f9a69001100c5a003f3a0abb03afd3bae2 (diff) | |
download | vyconf-5cb1952f52a8a67905a9361364a0c0823d44ed03.tar.gz vyconf-5cb1952f52a8a67905a9361364a0c0823d44ed03.zip |
T7046: add request reload_reftree
Diffstat (limited to 'data/vyconf.proto')
-rw-r--r-- | data/vyconf.proto | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/data/vyconf.proto b/data/vyconf.proto index d989fb3..a09d84a 100644 --- a/data/vyconf.proto +++ b/data/vyconf.proto @@ -117,6 +117,13 @@ message Request { message ExitConfigurationMode { } + message ReloadReftree { + // this is a temporary workaround for a bug with empty messages, and + // will be removed when the issue is resolved + optional int32 OnBehalfOf = 1; + } + + oneof msg { Status status = 1; SetupSession setup_session = 2; @@ -140,6 +147,7 @@ message Request { ExitConfigurationMode exit_configure = 20; Validate validate = 21; Teardown teardown = 22; + ReloadReftree reload_reftree = 23; } } |