First working client/server protobuf ping-pong

This commit is contained in:
Michael Mandl 2015-02-22 21:35:09 +01:00
parent 078f329c34
commit 8a0555eacd
19 changed files with 2222 additions and 352 deletions

7
proto/reply.proto Normal file
View file

@ -0,0 +1,7 @@
package Messages;
message Reply
{
optional string text = 1;
}

7
proto/request.proto Normal file
View file

@ -0,0 +1,7 @@
package Messages;
message Request
{
optional string text = 1;
}