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