From: Dmitriy Paliy <dmitriy.paliy@nokia.com>
To: linux-bluetooth@vger.kernel.org
Cc: Dmitriy Paliy <dmitriy.paliy@nokia.com>
Subject: [PATCH BlueZ 3/4] Add manager_allow_sniff to audio manager
Date: Tue, 24 Jan 2012 14:58:55 +0200 [thread overview]
Message-ID: <1327409936-6709-4-git-send-email-dmitriy.paliy@nokia.com> (raw)
In-Reply-To: <1327409936-6709-1-git-send-email-dmitriy.paliy@nokia.com>
This patch enables controlling permission to enter into sniff mode,
or to leave it, from audio manager through adapter's API.
---
audio/manager.c | 15 +++++++++++++++
audio/manager.h | 2 ++
2 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/audio/manager.c b/audio/manager.c
index 0b52520..33137ce 100644
--- a/audio/manager.c
+++ b/audio/manager.c
@@ -1418,3 +1418,18 @@ void manager_set_fast_connectable(gboolean enable)
adapter_get_dev_id(adapter->btd_adapter));
}
}
+
+void manager_allow_sniff(struct audio_device *dev, gboolean enable)
+{
+ struct btd_adapter *adapter;
+
+ adapter = manager_find_adapter(&dev->src);
+ if (!adapter)
+ return;
+
+ DBG("change link policy for hci%d", adapter_get_dev_id(adapter));
+
+ if (btd_adapter_allow_sniff(adapter, &dev->dst, enable))
+ error("Changing link policy for hci%d failed",
+ adapter_get_dev_id(adapter));
+}
diff --git a/audio/manager.h b/audio/manager.h
index 0bf7663..cd1c86d 100644
--- a/audio/manager.h
+++ b/audio/manager.h
@@ -54,3 +54,5 @@ gboolean manager_allow_headset_connection(struct audio_device *device);
/* TRUE to enable fast connectable and FALSE to disable fast connectable for all
* audio adapters. */
void manager_set_fast_connectable(gboolean enable);
+
+void manager_allow_sniff(struct audio_device *dev, gboolean enable);
--
1.7.5.4
next prev parent reply other threads:[~2012-01-24 12:58 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-24 12:58 [RFC BlueZ 0/4] Add hciops_allow_sniff to disable and restore LMP_SNIFF bit Dmitriy Paliy
2012-01-24 12:58 ` [PATCH BlueZ 1/4] " Dmitriy Paliy
2012-01-24 12:58 ` [PATCH BlueZ 2/4] Add btd_adapter_allow_sniff to adapter Dmitriy Paliy
2012-01-24 12:58 ` Dmitriy Paliy [this message]
2012-01-24 12:58 ` [PATCH BlueZ 4/4] Fix disallow entering in sniff mode while SCO is open Dmitriy Paliy
2012-01-24 13:23 ` [RFC BlueZ 0/4] Add hciops_allow_sniff to disable and restore LMP_SNIFF bit Luiz Augusto von Dentz
2012-01-25 8:06 ` Arnaud Mouiche
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1327409936-6709-4-git-send-email-dmitriy.paliy@nokia.com \
--to=dmitriy.paliy@nokia.com \
--cc=linux-bluetooth@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).