aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/bluetooth/mgmt.h
diff options
context:
space:
mode:
authorAntti Julku <antti.julku@nokia.com>2011-06-15 12:01:15 +0300
committerGustavo F. Padovan <padovan@profusion.mobi>2011-06-16 18:57:04 -0300
commit7fbec224cfb44074ab88720c878aa3bdb3158377 (patch)
treed8a1487b9e5781b14c28b8b3921219f961d9c0dc /include/net/bluetooth/mgmt.h
parentBluetooth: Move blacklisting functions to hci_core (diff)
downloadlinux-dev-7fbec224cfb44074ab88720c878aa3bdb3158377.tar.xz
linux-dev-7fbec224cfb44074ab88720c878aa3bdb3158377.zip
Bluetooth: Add blacklisting support for mgmt interface
Management interface commands for blocking and unblocking devices. Signed-off-by: Antti Julku <antti.julku@nokia.com> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include/net/bluetooth/mgmt.h')
-rw-r--r--include/net/bluetooth/mgmt.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/net/bluetooth/mgmt.h b/include/net/bluetooth/mgmt.h
index 4899286ed4e4..45bea25d737f 100644
--- a/include/net/bluetooth/mgmt.h
+++ b/include/net/bluetooth/mgmt.h
@@ -199,6 +199,16 @@ struct mgmt_cp_remove_remote_oob_data {
#define MGMT_OP_STOP_DISCOVERY 0x001C
+#define MGMT_OP_BLOCK_DEVICE 0x001D
+struct mgmt_cp_block_device {
+ bdaddr_t bdaddr;
+} __packed;
+
+#define MGMT_OP_UNBLOCK_DEVICE 0x001E
+struct mgmt_cp_unblock_device {
+ bdaddr_t bdaddr;
+} __packed;
+
#define MGMT_EV_CMD_COMPLETE 0x0001
struct mgmt_ev_cmd_complete {
__le16 opcode;