Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c1a7678b authored by Matthew Xie's avatar Matthew Xie Committed by Android (Google) Code Review
Browse files

Merge "LE (2/3): Add application ID to connection callback" into jb-mr2-dev

parents 8e2cec14 8029a28d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -195,7 +195,7 @@ static void btapp_gatts_handle_cback(uint16_t event, char* p_param)
            btif_gatt_check_encrypted_link(p_data->conn.remote_bda);

            HAL_CBACK(bt_gatt_callbacks, server->connection_cb,
                      p_data->conn.conn_id, TRUE, &bda);
                      p_data->conn.conn_id, p_data->conn.server_if, TRUE, &bda);
            break;
        }

@@ -205,7 +205,7 @@ static void btapp_gatts_handle_cback(uint16_t event, char* p_param)
            bdcpy(bda.address, p_data->conn.remote_bda);

            HAL_CBACK(bt_gatt_callbacks, server->connection_cb,
                      p_data->conn.conn_id, FALSE, &bda);
                      p_data->conn.conn_id, p_data->conn.server_if, FALSE, &bda);

            btif_gatt_remove_encrypted_link(p_data->conn.remote_bda);
            break;