Created
April 21, 2014 02:19
-
-
Save pareshchouhan/11130555 to your computer and use it in GitHub Desktop.
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
| package rConnect; | |
| enum rState { | |
| None = 0; | |
| Start = 1; | |
| Continue = 2; | |
| Stop = 3; | |
| } | |
| message rPart { | |
| optional uint32 parentID = 1; | |
| optional uint32 partID = 2; | |
| optional rState partState = 3; | |
| optional uint32 length = 4; | |
| optional uint32 padding = 5; | |
| optional bytes Data = 6; | |
| } | |
| message rPacket { | |
| optional uint32 ID = 1; | |
| optional uint32 type = 2; | |
| optional uint32 partCount = 3; | |
| optional rState pakcetState = 4; | |
| optional bytes Data = 5; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment