Nordic BLE: Add stub implementation of remove_peer_csrk in security manager.

pull/6932/head
Vincent Coubard 2018-05-02 17:52:39 +01:00
parent 4e5639f5ca
commit 7e043ead96
2 changed files with 10 additions and 0 deletions

View File

@ -527,6 +527,11 @@ ble_error_t nRF5xSecurityManager::set_peer_csrk(
return BLE_ERROR_NOT_IMPLEMENTED;
}
ble_error_t nRF5xSecurityManager::remove_peer_csrk(connection_handle_t connection)
{
return BLE_ERROR_NOT_IMPLEMENTED;
}
////////////////////////////////////////////////////////////////////////////
// Authentication
//

View File

@ -249,6 +249,11 @@ public:
sign_count_t sign_counter
);
/**
* @see ::ble::pal::SecurityManager::remove_peer_csrk
*/
virtual ble_error_t remove_peer_csrk(connection_handle_t connection);
////////////////////////////////////////////////////////////////////////////
// Authentication