BLE: Add a flag that indicate if the identity address is public or not.

pull/6932/head
Vincent Coubard 2018-04-17 14:07:19 +01:00
parent ab6821aab8
commit e8041510a6
1 changed files with 2 additions and 0 deletions

View File

@ -81,6 +81,8 @@ struct SecurityEntryIdentity_t {
address_t identity_address; address_t identity_address;
/** Identity Resolving Key */ /** Identity Resolving Key */
irk_t irk; irk_t irk;
/** true if peer identity address is public, false if it's static random */
uint8_t identity_address_is_public:1;
}; };
/** /**