linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Dmitriy Paliy <dmitriy.paliy@nokia.com>
To: linux-bluetooth@vger.kernel.org
Cc: Dmitriy Paliy <dmitriy.paliy@nokia.com>
Subject: [PATCH BlueZ 2/4] Add btd_adapter_allow_sniff to adapter
Date: Tue, 24 Jan 2012 14:58:54 +0200	[thread overview]
Message-ID: <1327409936-6709-3-git-send-email-dmitriy.paliy@nokia.com> (raw)
In-Reply-To: <1327409936-6709-1-git-send-email-dmitriy.paliy@nokia.com>

This makes hciops_allow_sniff exposed as adapter's API.
---
 src/adapter.c |   12 ++++++++++++
 src/adapter.h |    3 +++
 2 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/src/adapter.c b/src/adapter.c
index cf21ab4..7d8a647 100644
--- a/src/adapter.c
+++ b/src/adapter.c
@@ -3785,3 +3785,15 @@ int btd_adapter_remove_remote_oob_data(struct btd_adapter *adapter,
 {
 	return adapter_ops->remove_remote_oob_data(adapter->dev_id, bdaddr);
 }
+
+int btd_adapter_allow_sniff(struct btd_adapter *adapter, bdaddr_t *bdaddr,
+							gboolean enable)
+{
+	if (!adapter_ops)
+		return -EINVAL;
+
+	if (!adapter->up)
+		return -EINVAL;
+
+	return adapter_ops->allow_sniff(adapter->dev_id, bdaddr, enable);
+}
diff --git a/src/adapter.h b/src/adapter.h
index 6e57d17..066f36e 100644
--- a/src/adapter.h
+++ b/src/adapter.h
@@ -301,3 +301,6 @@ int btd_adapter_add_remote_oob_data(struct btd_adapter *adapter,
 
 int btd_adapter_remove_remote_oob_data(struct btd_adapter *adapter,
 							bdaddr_t *bdaddr);
+
+int btd_adapter_allow_sniff(struct btd_adapter *adapter, bdaddr_t *bdaddr,
+							gboolean enable);
-- 
1.7.5.4


  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 ` Dmitriy Paliy [this message]
2012-01-24 12:58 ` [PATCH BlueZ 3/4] Add manager_allow_sniff to audio manager Dmitriy Paliy
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-3-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).