diff options
author | Daniil Baturin <daniil@baturin.org> | 2017-01-06 04:22:09 +0700 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2017-01-06 04:22:09 +0700 |
commit | 06eab40896c094a45f190410b6cee85ccb08ff28 (patch) | |
tree | fc0d2f6545af2430b53b8d541f06384b7f34631b /data/vyconf.proto | |
parent | 3ffb4062ce551924a09f2f1965540064ad045c8d (diff) | |
download | vyconf-06eab40896c094a45f190410b6cee85ccb08ff28.tar.gz vyconf-06eab40896c094a45f190410b6cee85ccb08ff28.zip |
Split session setup and entering configuration mode in the protobuf schema.
Diffstat (limited to 'data/vyconf.proto')
-rw-r--r-- | data/vyconf.proto | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/data/vyconf.proto b/data/vyconf.proto index 67055bb..5e77581 100644 --- a/data/vyconf.proto +++ b/data/vyconf.proto @@ -8,10 +8,8 @@ message Request { } message SetupSession { - optional bool Exclusive = 1; - optional bool OverrideExclusive = 2; - optional string ClientApplication = 3; - optional int32 OnBehalfOf = 4; + optional string ClientApplication = 1; + optional int32 OnBehalfOf = 2; } message Set { @@ -95,6 +93,11 @@ message Request { message Confirm { } + message EnterConfigurationMode { + optional bool Exclusive = 1; + optional bool OverrideExclusive = 2; + } + oneof msg { Status status = 1; SetupSession setup_session = 2; @@ -114,6 +117,7 @@ message Request { ListChildren list_children = 16; RunOpMode run_op_mode = 17; Confirm confirm = 18; + EnterConfigurationMode configure = 19; } } |