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.

22 lines
560 B

syntax = "proto3";
package aae.blemessagestream;
option java_package = "com.android.car.BLEStreamProtos";
option java_outer_classname = "VersionExchangeProto";
message BLEVersionExchange {
// Minimum supported protobuf version.
int32 minSupportedMessagingVersion = 1;
// Maximum supported protobuf version.
int32 maxSupportedMessagingVersion = 2;
// Minimum supported version of the encryption engine.
int32 minSupportedSecurityVersion = 3;
// Maximum supported version of the encryption engine.
int32 maxSupportedSecurityVersion = 4;
}