mirror of https://github.com/ARMmbed/mbed-os.git
BLE: Fix signature of get_secure_connections_support in implementations.
parent
527a31663c
commit
5277f5a0fd
|
@ -98,7 +98,7 @@ public:
|
|||
* @see ::ble::pal::SecurityManager::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(
|
||||
bool &enabled, bool &secure_connections_only
|
||||
bool &enabled
|
||||
) {
|
||||
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(
|
||||
bool &enabled, bool &secure_connections_only
|
||||
bool &enabled
|
||||
) {
|
||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
@ -264,7 +264,7 @@ nRF5xSecurityManager& nRF5xSecurityManager::get_security_manager()
|
|||
|
||||
bool nRF5xSecurityManager::sm_handler()
|
||||
{
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
} // nordic
|
||||
|
|
|
@ -96,7 +96,7 @@ public:
|
|||
* @see ::ble::pal::SecurityManager::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