aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/bluetooth/mgmt.h
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@intel.com>2012-02-09 08:44:09 -0500
committerJohan Hedberg <johan.hedberg@intel.com>2012-02-13 10:01:36 -0500
commit664ce4cc293cd6c76236617f78689d0e03e69287 (patch)
tree870448a60770298e686cecddff6eafbfcd9f2792 /include/net/bluetooth/mgmt.h
parent272d90df2d4d065e782cafb08358bd8918bf703a (diff)
Bluetooth: Add address type to Out Of Band mgmt messages
This patch updates the implementation for these mgmt to be up to date with the latest API specification. Right now the address type isn't actually used for anything but that might change in the future. Signed-off-by: Johan Hedberg <johan.hedberg@intel.com> Acked-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include/net/bluetooth/mgmt.h')
-rw-r--r--include/net/bluetooth/mgmt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/bluetooth/mgmt.h b/include/net/bluetooth/mgmt.h
index 378d498896b3..f284499b5f7f 100644
--- a/include/net/bluetooth/mgmt.h
+++ b/include/net/bluetooth/mgmt.h
@@ -270,14 +270,14 @@ struct mgmt_rp_read_local_oob_data {
270 270
271#define MGMT_OP_ADD_REMOTE_OOB_DATA 0x0021 271#define MGMT_OP_ADD_REMOTE_OOB_DATA 0x0021
272struct mgmt_cp_add_remote_oob_data { 272struct mgmt_cp_add_remote_oob_data {
273 bdaddr_t bdaddr; 273 struct mgmt_addr_info addr;
274 __u8 hash[16]; 274 __u8 hash[16];
275 __u8 randomizer[16]; 275 __u8 randomizer[16];
276} __packed; 276} __packed;
277 277
278#define MGMT_OP_REMOVE_REMOTE_OOB_DATA 0x0022 278#define MGMT_OP_REMOVE_REMOTE_OOB_DATA 0x0022
279struct mgmt_cp_remove_remote_oob_data { 279struct mgmt_cp_remove_remote_oob_data {
280 bdaddr_t bdaddr; 280 struct mgmt_addr_info addr;
281} __packed; 281} __packed;
282 282
283#define MGMT_OP_START_DISCOVERY 0x0023 283#define MGMT_OP_START_DISCOVERY 0x0023