summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorBrian Gix2011-11-13 07:01:12 +0100
committerGustavo F. Padovan2011-11-16 19:49:56 +0100
commit453a83869c98746006d9a6c03e2b208b9018f671 (patch)
treedd476f0b76671fd767c3e3e6a439a33d26718da1 /include
parentBluetooth: Add HCI defines for User Passkey entry (diff)
downloadkernel-qcow2-linux-453a83869c98746006d9a6c03e2b208b9018f671.tar.gz
kernel-qcow2-linux-453a83869c98746006d9a6c03e2b208b9018f671.tar.xz
kernel-qcow2-linux-453a83869c98746006d9a6c03e2b208b9018f671.zip
Bluetooth: Add MGMT opcodes for Passkey Entry
Signed-off-by: Brian Gix <bgix@codeaurora.org> Acked-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include')
-rw-r--r--include/net/bluetooth/mgmt.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/net/bluetooth/mgmt.h b/include/net/bluetooth/mgmt.h
index 2e501820f728..139610e4341e 100644
--- a/include/net/bluetooth/mgmt.h
+++ b/include/net/bluetooth/mgmt.h
@@ -253,6 +253,17 @@ struct mgmt_cp_set_fast_connectable {
__u8 enable;
} __packed;
+#define MGMT_OP_USER_PASSKEY_REPLY 0x0020
+struct mgmt_cp_user_passkey_reply {
+ bdaddr_t bdaddr;
+ __le32 passkey;
+} __packed;
+
+#define MGMT_OP_USER_PASSKEY_NEG_REPLY 0x0021
+struct mgmt_cp_user_passkey_neg_reply {
+ bdaddr_t bdaddr;
+} __packed;
+
#define MGMT_EV_CMD_COMPLETE 0x0001
struct mgmt_ev_cmd_complete {
__le16 opcode;