From c27367a2a7afe319d80dbc0fe804a5a80f518902 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Mon, 13 Jan 2014 16:54:35 +0200 Subject: [PATCH] monitor: Add definitions for IO capability request command completion --- monitor/bt.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/monitor/bt.h b/monitor/bt.h index e40f434b2..09961f26d 100644 --- a/monitor/bt.h +++ b/monitor/bt.h @@ -562,6 +562,10 @@ struct bt_hci_cmd_io_capability_request_reply { uint8_t oob_data; uint8_t authentication; } __attribute__ ((packed)); +struct bt_hci_rsp_io_capability_request_reply { + uint8_t status; + uint8_t bdaddr[6]; +} __attribute__ ((packed)); #define BT_HCI_CMD_USER_CONFIRM_REQUEST_REPLY 0x042c struct bt_hci_cmd_user_confirm_request_reply { @@ -609,6 +613,10 @@ struct bt_hci_cmd_io_capability_request_neg_reply { uint8_t bdaddr[6]; uint8_t reason; } __attribute__ ((packed)); +struct bt_hci_rsp_io_capability_request_neg_reply { + uint8_t status; + uint8_t bdaddr[6]; +} __attribute__ ((packed)); #define BT_HCI_CMD_CREATE_PHY_LINK 0x0435 struct bt_hci_cmd_create_phy_link { -- 2.47.3