diff options
author | Daniil Baturin <daniil@baturin.org> | 2017-01-06 04:13:52 +0700 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2017-01-06 04:13:52 +0700 |
commit | 3ffb4062ce551924a09f2f1965540064ad045c8d (patch) | |
tree | dc759558570e92cd9ac10d1adaffbd2ac68bed30 /data | |
parent | 31d2ffbd5d37ff25b0feaaeddbe2a80021c21d2b (diff) | |
download | vyconf-3ffb4062ce551924a09f2f1965540064ad045c8d.tar.gz vyconf-3ffb4062ce551924a09f2f1965540064ad045c8d.zip |
Add confirm operation. Remove notifications field.
Diffstat (limited to 'data')
-rw-r--r-- | data/vyconf.proto | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/data/vyconf.proto b/data/vyconf.proto index e2f7496..67055bb 100644 --- a/data/vyconf.proto +++ b/data/vyconf.proto @@ -92,6 +92,9 @@ message Request { repeated string Path = 1; } + message Confirm { + } + oneof msg { Status status = 1; SetupSession setup_session = 2; @@ -110,6 +113,7 @@ message Request { GetValues get_values = 15; ListChildren list_children = 16; RunOpMode run_op_mode = 17; + Confirm confirm = 18; } } @@ -123,5 +127,4 @@ message Response { optional string output = 2; repeated string errors = 3; repeated string warnings = 4; - repeated string notifications = 5; } |