Return-Path: From: =?UTF-8?q?Jo=C3=A3o=20Paulo=20Rechi=20Vita?= To: linux-bluetooth@vger.kernel.org Cc: Claudio Takahasi Subject: [PATCH BlueZ v2 09/14] core: Start LE scanning when a device requests Date: Wed, 15 Aug 2012 11:50:48 -0300 Message-Id: <1345042253-15053-10-git-send-email-jprvita@openbossa.org> In-Reply-To: <1345042253-15053-1-git-send-email-jprvita@openbossa.org> References: <1345042253-15053-1-git-send-email-jprvita@openbossa.org> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: From: Claudio Takahasi This patch enables the LE scanning when a device requires connection and there isn't discovery sessions, triggering the General Connection Establishment Procedure. --- src/adapter.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/adapter.c b/src/adapter.c index c3ec714..4cd8c10 100644 --- a/src/adapter.c +++ b/src/adapter.c @@ -2200,6 +2200,11 @@ void adapter_connect_list_add(struct btd_adapter *adapter, adapter->connect_list = g_slist_append(adapter->connect_list, device); DBG("%s added to %s's connect_list", device_get_path(device), adapter->name); + + if (adapter->disc_sessions) + return; + + mgmt_start_scanning(adapter->dev_id); } void adapter_connect_list_remove(struct btd_adapter *adapter, -- 1.7.11.2