From cc1bd16c7d2f3bb494b44e566d53eb6abc697ed5 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 27 Aug 2013 18:43:57 -0700 Subject: [PATCH] monitor: Add structure for local out-of-band data details --- monitor/bt.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/monitor/bt.h b/monitor/bt.h index 30ea59c58..298d29c18 100644 --- a/monitor/bt.h +++ b/monitor/bt.h @@ -744,6 +744,13 @@ struct bt_hci_cmd_write_simple_pairing_mode { uint8_t mode; } __attribute__ ((packed)); +#define BT_HCI_CMD_READ_LOCAL_OOB_DATA 0x0c57 +struct bt_hci_rsp_read_local_oob_data { + uint8_t status; + uint8_t hash[16]; + uint8_t randomizer[16]; +} __attribute__ ((packed)); + #define BT_HCI_CMD_READ_INQUIRY_RESP_TX_POWER 0x0c58 struct bt_hci_rsp_read_inquiry_resp_tx_power { uint8_t status; -- 2.47.3