Home | History | Annotate | Download | only in proto
      1 // Copyright 2010 Google Inc. All Rights Reserved.
      2 // Author: wink (a] google.com (Wink Saville)
      3 
      4 package communication;
      5 
      6 option java_package='com.android.internal.communication';
      7 
      8 message MsgHeader {
      9   required uint32 cmd = 1;
     10   required uint32 length_data = 2;
     11   optional uint32 status = 3;
     12   optional uint64 token = 4;
     13 }
     14