1syntax = "proto3"; 2 3package bluetooth.facade; 4 5message BluetoothAddress { 6 bytes address = 1; 7} 8 9enum BluetoothAddressTypeEnum { 10 PUBLIC_DEVICE_ADDRESS = 0x0; 11 RANDOM_DEVICE_ADDRESS = 0x1; 12 PUBLIC_IDENTITY_ADDRESS = 0x2; 13 RANDOM_IDENTITY_ADDRESS = 0x3; 14} 15 16message BluetoothAddressWithType { 17 BluetoothAddress address = 1; 18 BluetoothAddressTypeEnum type = 2; 19} 20 21enum BluetoothPeerAddressTypeEnum { 22 PUBLIC_DEVICE_OR_IDENTITY_ADDRESS = 0x0; 23 RANDOM_DEVICE_OR_IDENTITY_ADDRESS = 0x1; 24} 25