From 1b8bb67649e5042578d948d5316f738a7ed61353 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Mon, 13 Jan 2014 16:24:47 +0200 Subject: [PATCH] monitor: Add defines for SSP user confirmation command completion --- monitor/bt.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/monitor/bt.h b/monitor/bt.h index 926dc5d63..e40f434b2 100644 --- a/monitor/bt.h +++ b/monitor/bt.h @@ -567,11 +567,19 @@ struct bt_hci_cmd_io_capability_request_reply { struct bt_hci_cmd_user_confirm_request_reply { uint8_t bdaddr[6]; } __attribute__ ((packed)); +struct bt_hci_rsp_user_confirm_request_reply { + uint8_t status; + uint8_t bdaddr[6]; +} __attribute__ ((packed)); #define BT_HCI_CMD_USER_CONFIRM_REQUEST_NEG_REPLY 0x042d struct bt_hci_cmd_user_confirm_request_neg_reply { uint8_t bdaddr[6]; } __attribute__ ((packed)); +struct bt_hci_rsp_user_confirm_request_neg_reply { + uint8_t status; + uint8_t bdaddr[6]; +} __attribute__ ((packed)); #define BT_HCI_CMD_USER_PASSKEY_REQUEST_REPLY 0x042e struct bt_hci_cmd_user_passkey_request_reply { -- 2.47.3