mirror of https://github.com/ARMmbed/mbed-os.git
BLE: Fix signature of get_secure_connections_support in implementations.
parent
d2e957f1d7
commit
1e6851e6e9
|
@ -98,7 +98,7 @@ public:
|
||||||
* @see ::ble::pal::SecurityManager::get_secure_connections_support
|
* @see ::ble::pal::SecurityManager::get_secure_connections_support
|
||||||
*/
|
*/
|
||||||
virtual ble_error_t get_secure_connections_support(
|
virtual ble_error_t get_secure_connections_support(
|
||||||
bool &enabled, bool &secure_connections_only
|
bool &enabled
|
||||||
);
|
);
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -95,7 +95,7 @@ ble_error_t CordioSecurityManager::set_secure_connections_support(
|
||||||
}
|
}
|
||||||
|
|
||||||
ble_error_t CordioSecurityManager::get_secure_connections_support(
|
ble_error_t CordioSecurityManager::get_secure_connections_support(
|
||||||
bool &enabled, bool &secure_connections_only
|
bool &enabled
|
||||||
) {
|
) {
|
||||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
|
@ -92,7 +92,7 @@ ble_error_t nRF5xSecurityManager::set_secure_connections_support(
|
||||||
}
|
}
|
||||||
|
|
||||||
ble_error_t nRF5xSecurityManager::get_secure_connections_support(
|
ble_error_t nRF5xSecurityManager::get_secure_connections_support(
|
||||||
bool &enabled, bool &secure_connections_only
|
bool &enabled
|
||||||
) {
|
) {
|
||||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
@ -264,7 +264,7 @@ nRF5xSecurityManager& nRF5xSecurityManager::get_security_manager()
|
||||||
|
|
||||||
bool nRF5xSecurityManager::sm_handler()
|
bool nRF5xSecurityManager::sm_handler()
|
||||||
{
|
{
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // nordic
|
} // nordic
|
||||||
|
|
|
@ -96,7 +96,7 @@ public:
|
||||||
* @see ::ble::pal::SecurityManager::get_secure_connections_support
|
* @see ::ble::pal::SecurityManager::get_secure_connections_support
|
||||||
*/
|
*/
|
||||||
virtual ble_error_t get_secure_connections_support(
|
virtual ble_error_t get_secure_connections_support(
|
||||||
bool &enabled, bool &secure_connections_only
|
bool &enabled
|
||||||
);
|
);
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
Loading…
Reference in New Issue