summaryrefslogtreecommitdiff
path: root/data/vyconf.proto
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2025-01-20 19:15:10 +0000
committerGitHub <noreply@github.com>2025-01-20 19:15:10 +0000
commita375860a302a224722d254c31a1cb210cb12d972 (patch)
tree96217a1eaf38c910e183c30f2adab865b409e916 /data/vyconf.proto
parent5ae7f4150091efb66c6f9946df81adde3ddc6ace (diff)
parent5cb1952f52a8a67905a9361364a0c0823d44ed03 (diff)
downloadvyconf-a375860a302a224722d254c31a1cb210cb12d972.tar.gz
vyconf-a375860a302a224722d254c31a1cb210cb12d972.zip
Merge pull request #13 from jestabro/mutable-world
T7046: T6946: add ability to reload reference tree at runtime
Diffstat (limited to 'data/vyconf.proto')
-rw-r--r--data/vyconf.proto8
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;
}
}