Move to Google protobuf for Instruction

This commit is contained in:
Keith Winstein
2011-08-26 02:17:37 -04:00
parent 86eb159a5b
commit 5ee4ec1b61
7 changed files with 193 additions and 173 deletions
+12
View File
@@ -0,0 +1,12 @@
option optimize_for = LITE_RUNTIME;
package TransportBuffers;
message Instruction {
optional uint64 old_num = 1;
optional uint64 new_num = 2;
optional uint64 ack_num = 3;
optional uint64 throwaway_num = 4;
optional bytes diff = 5;
}