If remote device has both HFP AG and HFP HF records then we were always selecting first record. This could result in not being able to connect to HF if AG records happen to be first one. Issue found on UPF 50. --- android/handsfree.c | 28 ++++++++++------------------ 1 file changed, 10 insertions(+), 18 deletions(-) diff --git a/android/handsfree.c b/android/handsfree.c index 98d40b3..c03fa6a 100644 --- a/android/handsfree.c +++ b/android/handsfree.c @@ -1621,10 +1621,11 @@ static int sdp_search_hsp(struct hf_device *dev) static void sdp_hfp_search_cb(sdp_list_t *recs, int err, gpointer data) { struct hf_device *dev = data; - sdp_list_t *protos, *classes; + sdp_list_t *protos; + sdp_record_t *rec; GError *gerr = NULL; GIOChannel *io; - uuid_t uuid; + uuid_t class; int channel; DBG(""); @@ -1646,26 +1647,15 @@ static void sdp_hfp_search_cb(sdp_list_t *recs, int err, gpointer data) return; } - if (sdp_get_service_classes(recs->data, &classes) < 0 || !classes) { - error("handsfree: unable to get service classes from record"); + sdp_uuid16_create(&class, HANDSFREE_SVCLASS_ID); + rec = sdp_find_record_with_class(recs, class); + if (!rec) { + error("handsfree: invalid service record or not HFP"); goto fail; } - if (sdp_get_access_protos(recs->data, &protos) < 0) { + if (sdp_get_access_protos(rec, &protos) < 0) { error("handsfree: unable to get access protocols from record"); - sdp_list_free(classes, free); - goto fail; - } - - /* TODO read remote version? */ - - memcpy(&uuid, classes->data, sizeof(uuid)); - sdp_list_free(classes, free); - - if (!sdp_uuid128_to_uuid(&uuid) || uuid.type != SDP_UUID16 || - uuid.value.uuid16 != HANDSFREE_SVCLASS_ID) { - sdp_list_free(protos, NULL); - error("handsfree: invalid service record or not HFP"); goto fail; } @@ -1677,6 +1667,8 @@ static void sdp_hfp_search_cb(sdp_list_t *recs, int err, gpointer data) goto fail; } + /* TODO read remote version? */ + io = bt_io_connect(connect_cb, dev, NULL, &gerr, BT_IO_OPT_SOURCE_BDADDR, &adapter_addr, BT_IO_OPT_DEST_BDADDR, &dev->bdaddr, -- 1.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html