mirror of https://github.com/ARMmbed/mbed-os.git
BLE: Add a flag indicating if irk is stored in the distribution flags.
parent
9643b57159
commit
ab6821aab8
|
@ -39,7 +39,8 @@ struct SecurityDistributionFlags_t {
|
||||||
csrk_mitm_protected(false),
|
csrk_mitm_protected(false),
|
||||||
ltk_stored(false),
|
ltk_stored(false),
|
||||||
ltk_mitm_protected(false),
|
ltk_mitm_protected(false),
|
||||||
secure_connections_paired(false) {
|
secure_connections_paired(false),
|
||||||
|
irk_stored(false) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/** peer address */
|
/** peer address */
|
||||||
|
@ -60,6 +61,8 @@ struct SecurityDistributionFlags_t {
|
||||||
uint8_t ltk_mitm_protected:1;
|
uint8_t ltk_mitm_protected:1;
|
||||||
/** the current pairing was done using Secure Connections */
|
/** the current pairing was done using Secure Connections */
|
||||||
uint8_t secure_connections_paired:1;
|
uint8_t secure_connections_paired:1;
|
||||||
|
/** the security entry has been distributed and stored */
|
||||||
|
uint8_t irk_stored:1;
|
||||||
};
|
};
|
||||||
|
|
||||||
/** Long Term Key and data used to identify it */
|
/** Long Term Key and data used to identify it */
|
||||||
|
|
Loading…
Reference in New Issue