summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-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;
}
}