You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
599 B
24 lines
599 B
4 months ago
|
syntax = "proto3";
|
||
|
|
||
|
package aae.blemessagestream;
|
||
|
|
||
|
import "packages/services/Car/service/proto/operation_type.proto";
|
||
|
|
||
|
option java_package = "com.android.car.BleStreamProtos";
|
||
|
option java_outer_classname = "BleDeviceMessageProto";
|
||
|
|
||
|
// A message between devices.
|
||
|
message BleDeviceMessage {
|
||
|
// The operation that this message represents.
|
||
|
OperationType operation = 1;
|
||
|
|
||
|
// Whether the payload field is encrypted.
|
||
|
bool is_payload_encrypted = 2;
|
||
|
|
||
|
// Identifier of the intended recipient.
|
||
|
bytes recipient = 3;
|
||
|
|
||
|
// The bytes that represent the content for this message.
|
||
|
bytes payload = 4;
|
||
|
}
|