Skip to content
Snippets Groups Projects
Commit f90bebf2 authored by Myles Watson's avatar Myles Watson
Browse files

GAP: Set service_id before calling gap_release_ccb

Calling gap_release_ccb with a service_id == 0, which in turn
calls BTM_SecClrService with an ID of 0.

From the documentation for BTM_SecClrService:

  Service ID - Id of the service to remove. '0' removes all
               service records (except SDP).

Test: BLE connection and characteristic read
Change-Id: Icf309807f02e1faa273cf9bad9c09d9221a8bbfd
parent dba42be3
No related branches found
No related tags found
No related merge requests found
......@@ -176,6 +176,9 @@ uint16_t GAP_ConnOpen(const char* p_serv_name, uint8_t service_id,
/* update the transport */
p_ccb->transport = transport;
/* The service_id must be set before calling gap_release_ccb(). */
p_ccb->service_id = service_id;
/* If caller specified a BD address, save it */
if (p_rem_bda) {
/* the bd addr is not RawAddress::kAny, then a bd address was specified */
......@@ -237,7 +240,6 @@ uint16_t GAP_ConnOpen(const char* p_serv_name, uint8_t service_id,
}
/* Register with Security Manager for the specific security level */
p_ccb->service_id = service_id;
if (!BTM_SetSecurityLevel((uint8_t)!is_server, p_serv_name, p_ccb->service_id,
security, p_ccb->psm, 0, 0)) {
LOG(ERROR) << "GAP_CONN - Security Error";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment