Last active
August 29, 2015 14:24
-
-
Save pandemicsyn/faf2a194f5f96100e0bc to your computer and use it in GitHub Desktop.
awkward msgring proto msg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
syntax = "proto3"; | |
package proto; | |
//Server Interface | |
service MsgRingListener { | |
rpc SendMsg(RingMsg) returns (Valid) {}; | |
} | |
message RingMsg { | |
uint64 MsgLength = 0; | |
uint64 MsgType = 999999; | |
bytes Payload; | |
} | |
message Valid { | |
bool Status = false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment