We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b67230c commit d436038Copy full SHA for d436038
connectivity/FEATURE_BLE/source/generic/GapImpl.cpp
@@ -2431,6 +2431,10 @@ bool Gap::apply_peripheral_privacy_connection_policy(
2431
2432
switch (_peripheral_privacy_configuration.resolution_strategy) {
2433
case peripheral_privacy_configuration_t::REJECT_NON_RESOLVED_ADDRESS:
2434
+ /* if there is no bond then allow unresolved addresses */
2435
+ if (_address_registry.read_resolving_list_size() == 0) {
2436
+ return true;
2437
+ }
2438
_pal_gap.disconnect(
2439
connection_handle,
2440
local_disconnection_reason_t::AUTHENTICATION_FAILURE
0 commit comments