diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2016-10-01 10:35:58 +0200 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2016-10-01 10:35:58 +0200 |
| commit | 2969016625c22d9b1e73534f82aed5a4f26b602f (patch) | |
| tree | 977f660651b4becce3592f7793c216e997e5e9ca /libcmix-protobuf | |
| parent | 74a59a6f1a3e232619a20034edf7a333ad029b03 (diff) | |
| download | cmix-2969016625c22d9b1e73534f82aed5a4f26b602f.tar.gz cmix-2969016625c22d9b1e73534f82aed5a4f26b602f.tar.bz2 cmix-2969016625c22d9b1e73534f82aed5a4f26b602f.zip | |
Created a container Message CMixMessage for all network communication.
Diffstat (limited to 'libcmix-protobuf')
| -rw-r--r-- | libcmix-protobuf/cmix.proto | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/libcmix-protobuf/cmix.proto b/libcmix-protobuf/cmix.proto index f0c1dc3..3068291 100644 --- a/libcmix-protobuf/cmix.proto +++ b/libcmix-protobuf/cmix.proto @@ -1,3 +1,11 @@ -message initialization { +package cmix_proto; + +message Initialization { required bytes public_share = 1; } + +message CMixMessage { + oneof contents { + Initialization initialization = 1; + } +} |
