completely redundant

pull/6932/head
paul-szczepanek-arm 2018-04-04 17:16:16 +01:00
parent 539a11ee31
commit 2e1c5fc123
2 changed files with 0 additions and 24 deletions

View File

@ -466,22 +466,6 @@ public:
uint32_t sign_counter
) = 0;
/**
* Set the signing counter associated with the peer. This counter will be used
* to verify the signed messages coming from that peer.
*
* @note see BLUETOOTH SPECIFICATION Version 5.0 | Vol 3, Part H Section 2.4.5
*
* @param connection_handle The handle of the connection for the peer.
* @param sign_counter Counter used to verify incoming signed messages.
*
* @return BLE_ERROR_NONE or an appropriate error.
*/
virtual ble_error_t set_peer_signing_counter(
connection_handle_t connection_handle,
uint32_t sign_counter
) = 0;
/**
* Send a write request to the server.
*

View File

@ -316,14 +316,6 @@ ble_error_t nRF5XGattClient::signed_write_without_response(
return convert_sd_error(err);
}
ble_error_t nRF5XGattClient::set_peer_signing_counter(
connection_handle_t connection_handle,
uint32_t sign_counter
) {
/* TODO: implement*/
return BLE_ERROR_NOT_IMPLEMENTED;
}
ble_error_t nRF5XGattClient::write_attribute(
connection_handle_t connection_handle,
attribute_handle_t attribute_handle,