diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2016-10-05 12:56:52 +0200 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2016-10-05 14:12:28 +0200 |
| commit | 88c5130eccd06e63ffca732626c0fb59426743a7 (patch) | |
| tree | f9c7c4536bfa50057269c3636baedea3cb859ac1 /libcmix-protobuf | |
| parent | edc3690d62890449df3ae4c14636019bce4833f1 (diff) | |
| download | cmix-88c5130eccd06e63ffca732626c0fb59426743a7.tar.gz cmix-88c5130eccd06e63ffca732626c0fb59426743a7.tar.bz2 cmix-88c5130eccd06e63ffca732626c0fb59426743a7.zip | |
Seperates Nodes and Clients for incoming connections.
Created a PrevNode class to reflect the seperation.
Made Client movable.
Added 2 empty protobuf message that declare what each connecting client
is, sent when connected to a node.
Diffstat (limited to 'libcmix-protobuf')
| -rw-r--r-- | libcmix-protobuf/cmix.proto | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libcmix-protobuf/cmix.proto b/libcmix-protobuf/cmix.proto index 3068291..6e653f1 100644 --- a/libcmix-protobuf/cmix.proto +++ b/libcmix-protobuf/cmix.proto @@ -4,8 +4,18 @@ message Initialization { required bytes public_share = 1; } +message ImANode { + +} + +message ImAClient { + +} + message CMixMessage { oneof contents { Initialization initialization = 1; + ImANode imanode = 2; + ImAClient imaclient = 3; } } |
