Skip to content

Instantly share code, notes, and snippets.

@pandemicsyn
Last active August 29, 2015 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pandemicsyn/faf2a194f5f96100e0bc to your computer and use it in GitHub Desktop.
Save pandemicsyn/faf2a194f5f96100e0bc to your computer and use it in GitHub Desktop.
awkward msgring proto msg
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