mirror of https://github.com/ARMmbed/mbed-os.git
Nordic BLE: Add stub implementation of remove_peer_csrk in security manager.
parent
4e5639f5ca
commit
7e043ead96
|
@ -527,6 +527,11 @@ ble_error_t nRF5xSecurityManager::set_peer_csrk(
|
||||||
return BLE_ERROR_NOT_IMPLEMENTED;
|
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ble_error_t nRF5xSecurityManager::remove_peer_csrk(connection_handle_t connection)
|
||||||
|
{
|
||||||
|
return BLE_ERROR_NOT_IMPLEMENTED;
|
||||||
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////
|
||||||
// Authentication
|
// Authentication
|
||||||
//
|
//
|
||||||
|
|
|
@ -249,6 +249,11 @@ public:
|
||||||
sign_count_t sign_counter
|
sign_count_t sign_counter
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see ::ble::pal::SecurityManager::remove_peer_csrk
|
||||||
|
*/
|
||||||
|
virtual ble_error_t remove_peer_csrk(connection_handle_t connection);
|
||||||
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////
|
||||||
// Authentication
|
// Authentication
|
||||||
|
|
Loading…
Reference in New Issue