--- android/bluetooth.c | 31 +++++++++++++++++++++++++++++++ android/bluetooth.h | 1 + 2 files changed, 32 insertions(+) diff --git a/android/bluetooth.c b/android/bluetooth.c index 18a2ae9..3d8bfc8 100644 --- a/android/bluetooth.c +++ b/android/bluetooth.c @@ -1490,6 +1490,37 @@ bool bt_device_set_uuids(const bdaddr_t *addr, GSList *uuids) return true; } +bool bt_auto_connect_add(const bdaddr_t *addr) +{ + struct mgmt_cp_add_device cp; + struct device *dev; + + if (!main_opts.kernel_conn_control) + return false; + + dev = find_device(addr); + if (!dev) + return false; + + if (dev->bdaddr_type == BDADDR_BREDR) { + DBG("auto-connection feature is not available for BR/EDR"); + return false; + } + + memset(&cp, 0, sizeof(cp)); + bacpy(&cp.addr.bdaddr, addr); + cp.addr.type = dev->bdaddr_type; + cp.action = 0x02; + + if (mgmt_send(mgmt_if, MGMT_OP_ADD_DEVICE, adapter.index, sizeof(cp), + &cp, NULL, NULL, NULL) > 0) + return true; + + error("Failed to add device"); + + return false; +} + static bool rssi_above_threshold(int old, int new) { /* only 8 dBm or more */ diff --git a/android/bluetooth.h b/android/bluetooth.h index bd81703..9b83baa 100644 --- a/android/bluetooth.h +++ b/android/bluetooth.h @@ -86,3 +86,4 @@ uint16_t bt_get_gatt_ccc(const bdaddr_t *addr); const bdaddr_t *bt_get_id_addr(const bdaddr_t *addr, uint8_t *type); +bool bt_auto_connect_add(const bdaddr_t *addr); -- 1.8.4 -- 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