Skip to content

Commit 7e043ea

Browse files
committed
Nordic BLE: Add stub implementation of remove_peer_csrk in security manager.
1 parent 4e5639f commit 7e043ea

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

features/FEATURE_BLE/targets/TARGET_NORDIC/TARGET_NRF5/source/nRF5xPalSecurityManager.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -527,6 +527,11 @@ ble_error_t nRF5xSecurityManager::set_peer_csrk(
527527
return BLE_ERROR_NOT_IMPLEMENTED;
528528
}
529529

530+
ble_error_t nRF5xSecurityManager::remove_peer_csrk(connection_handle_t connection)
531+
{
532+
return BLE_ERROR_NOT_IMPLEMENTED;
533+
}
534+
530535
////////////////////////////////////////////////////////////////////////////
531536
// Authentication
532537
//

features/FEATURE_BLE/targets/TARGET_NORDIC/TARGET_NRF5/source/nRF5xPalSecurityManager.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,11 @@ class nRF5xSecurityManager : public ::ble::pal::SecurityManager {
249249
sign_count_t sign_counter
250250
);
251251

252+
/**
253+
* @see ::ble::pal::SecurityManager::remove_peer_csrk
254+
*/
255+
virtual ble_error_t remove_peer_csrk(connection_handle_t connection);
256+
252257

253258
////////////////////////////////////////////////////////////////////////////
254259
// Authentication

0 commit comments

Comments
 (0)