2010-09-20 15:42:59 +08:00
|
|
|
/*
|
|
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Nokia Corporation
|
|
|
|
* Copyright (C) 2010 Marcel Holtmann <marcel@holtmann.org>
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-11-02 02:15:10 +08:00
|
|
|
#ifndef __packed
|
|
|
|
#define __packed __attribute__((packed))
|
|
|
|
#endif
|
|
|
|
|
2011-02-24 21:36:47 +08:00
|
|
|
#define MGMT_INDEX_NONE 0xFFFF
|
|
|
|
|
2010-11-02 02:23:03 +08:00
|
|
|
struct mgmt_hdr {
|
2010-09-20 15:42:59 +08:00
|
|
|
uint16_t opcode;
|
2011-02-24 21:36:47 +08:00
|
|
|
uint16_t index;
|
2010-09-20 15:42:59 +08:00
|
|
|
uint16_t len;
|
|
|
|
} __packed;
|
2011-02-24 21:36:47 +08:00
|
|
|
#define MGMT_HDR_SIZE 6
|
2010-09-20 15:42:59 +08:00
|
|
|
|
2010-11-02 02:23:03 +08:00
|
|
|
#define MGMT_OP_READ_VERSION 0x0001
|
2010-11-08 01:12:30 +08:00
|
|
|
struct mgmt_rp_read_version {
|
2010-11-02 02:15:10 +08:00
|
|
|
uint8_t version;
|
|
|
|
uint16_t revision;
|
|
|
|
} __packed;
|
|
|
|
|
2010-11-02 02:23:03 +08:00
|
|
|
#define MGMT_OP_READ_FEATURES 0x0002
|
2010-11-08 01:12:30 +08:00
|
|
|
struct mgmt_rp_read_features {
|
2010-11-02 04:45:27 +08:00
|
|
|
uint8_t features[8];
|
|
|
|
} __packed;
|
2010-11-02 02:58:48 +08:00
|
|
|
|
2010-11-02 02:23:03 +08:00
|
|
|
#define MGMT_OP_READ_INDEX_LIST 0x0003
|
2010-11-08 01:12:30 +08:00
|
|
|
struct mgmt_rp_read_index_list {
|
2010-11-02 02:58:48 +08:00
|
|
|
uint16_t num_controllers;
|
|
|
|
uint16_t index[0];
|
|
|
|
} __packed;
|
|
|
|
|
2011-03-30 17:24:23 +08:00
|
|
|
/* Reserve one extra byte for names in management messages so that they
|
|
|
|
* are always guaranteed to be nul-terminated */
|
|
|
|
#define MGMT_MAX_NAME_LENGTH (HCI_MAX_NAME_LENGTH + 1)
|
2011-12-13 17:20:06 +08:00
|
|
|
#define MGMT_MAX_SHORT_NAME_LENGTH (10 + 1)
|
|
|
|
|
|
|
|
#define MGMT_SETTING_POWERED 0x00000001
|
|
|
|
#define MGMT_SETTING_CONNECTABLE 0x00000002
|
|
|
|
#define MGMT_SETTING_FAST_CONNECTABLE 0x00000004
|
|
|
|
#define MGMT_SETTING_DISCOVERABLE 0x00000008
|
|
|
|
#define MGMT_SETTING_PAIRABLE 0x00000010
|
|
|
|
#define MGMT_SETTING_LINK_SECURITY 0x00000020
|
|
|
|
#define MGMT_SETTING_SSP 0x00000040
|
|
|
|
#define MGMT_SETTING_BREDR 0x00000080
|
|
|
|
#define MGMT_SETTING_HS 0x00000100
|
|
|
|
#define MGMT_SETTING_LE 0x00000200
|
2011-03-30 17:24:23 +08:00
|
|
|
|
2010-11-02 02:23:03 +08:00
|
|
|
#define MGMT_OP_READ_INFO 0x0004
|
2010-11-08 01:12:30 +08:00
|
|
|
struct mgmt_rp_read_info {
|
2010-11-02 06:10:23 +08:00
|
|
|
bdaddr_t bdaddr;
|
2011-12-13 17:20:06 +08:00
|
|
|
uint8_t version;
|
2010-11-09 03:08:41 +08:00
|
|
|
uint16_t manufacturer;
|
2011-12-13 17:20:06 +08:00
|
|
|
uint32_t supported_settings;
|
|
|
|
uint32_t current_settings;
|
|
|
|
uint8_t dev_class[3];
|
2011-03-30 17:24:23 +08:00
|
|
|
uint8_t name[MGMT_MAX_NAME_LENGTH];
|
2011-12-13 17:20:06 +08:00
|
|
|
uint8_t short_name[MGMT_MAX_SHORT_NAME_LENGTH];
|
2010-11-02 04:45:27 +08:00
|
|
|
} __packed;
|
|
|
|
|
2010-12-30 06:10:26 +08:00
|
|
|
struct mgmt_mode {
|
|
|
|
uint8_t val;
|
2010-12-29 18:43:02 +08:00
|
|
|
} __packed;
|
2010-11-04 08:56:31 +08:00
|
|
|
|
2010-12-30 06:10:26 +08:00
|
|
|
#define MGMT_OP_SET_POWERED 0x0005
|
|
|
|
|
2010-12-29 20:38:57 +08:00
|
|
|
#define MGMT_OP_SET_DISCOVERABLE 0x0006
|
2011-11-03 14:17:23 +08:00
|
|
|
struct mgmt_cp_set_discoverable {
|
|
|
|
uint8_t val;
|
|
|
|
uint16_t timeout;
|
|
|
|
} __packed;
|
2010-12-29 20:38:57 +08:00
|
|
|
|
2010-12-30 05:30:35 +08:00
|
|
|
#define MGMT_OP_SET_CONNECTABLE 0x0007
|
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_OP_SET_FAST_CONNECTABLE 0x0008
|
2010-12-30 21:03:57 +08:00
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_OP_SET_PAIRABLE 0x0009
|
2011-01-04 04:17:32 +08:00
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_OP_SET_LINK_SECURITY 0x000A
|
|
|
|
|
|
|
|
#define MGMT_OP_SET_SSP 0x000B
|
|
|
|
|
|
|
|
#define MGMT_OP_SET_HS 0x000C
|
2011-01-15 05:14:13 +08:00
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_OP_SET_LE 0x000D
|
|
|
|
|
|
|
|
#define MGMT_OP_SET_DEV_CLASS 0x000E
|
2011-01-15 05:14:13 +08:00
|
|
|
struct mgmt_cp_set_dev_class {
|
|
|
|
uint8_t major;
|
|
|
|
uint8_t minor;
|
|
|
|
} __packed;
|
|
|
|
|
2011-12-15 05:03:35 +08:00
|
|
|
#define MGMT_OP_SET_LOCAL_NAME 0x000F
|
|
|
|
struct mgmt_cp_set_local_name {
|
|
|
|
uint8_t name[MGMT_MAX_NAME_LENGTH];
|
|
|
|
uint8_t short_name[MGMT_MAX_SHORT_NAME_LENGTH];
|
|
|
|
} __packed;
|
|
|
|
|
|
|
|
#define MGMT_OP_ADD_UUID 0x0010
|
2011-12-14 20:20:14 +08:00
|
|
|
struct mgmt_cp_add_uuid {
|
|
|
|
uint8_t uuid[16];
|
|
|
|
uint8_t svc_hint;
|
|
|
|
} __packed;
|
|
|
|
|
2011-12-15 05:03:35 +08:00
|
|
|
#define MGMT_OP_REMOVE_UUID 0x0011
|
2011-12-14 20:20:14 +08:00
|
|
|
struct mgmt_cp_remove_uuid {
|
|
|
|
uint8_t uuid[16];
|
2011-01-15 05:14:13 +08:00
|
|
|
} __packed;
|
2011-01-04 04:17:32 +08:00
|
|
|
|
2011-11-08 02:09:03 +08:00
|
|
|
struct mgmt_link_key_info {
|
2011-01-21 10:49:42 +08:00
|
|
|
bdaddr_t bdaddr;
|
|
|
|
uint8_t type;
|
|
|
|
uint8_t val[16];
|
|
|
|
uint8_t pin_len;
|
|
|
|
} __packed;
|
|
|
|
|
2011-12-15 05:03:35 +08:00
|
|
|
#define MGMT_OP_LOAD_LINK_KEYS 0x0012
|
2011-11-08 02:09:03 +08:00
|
|
|
struct mgmt_cp_load_link_keys {
|
2011-01-21 10:49:42 +08:00
|
|
|
uint8_t debug_keys;
|
|
|
|
uint16_t key_count;
|
2011-11-08 02:09:03 +08:00
|
|
|
struct mgmt_link_key_info keys[0];
|
2011-01-21 10:49:42 +08:00
|
|
|
} __packed;
|
|
|
|
|
2011-12-15 05:03:35 +08:00
|
|
|
#define MGMT_OP_REMOVE_KEYS 0x0013
|
2011-11-08 02:09:03 +08:00
|
|
|
struct mgmt_cp_remove_keys {
|
2011-01-21 10:49:42 +08:00
|
|
|
bdaddr_t bdaddr;
|
|
|
|
uint8_t disconnect;
|
|
|
|
} __packed;
|
2011-11-10 20:04:40 +08:00
|
|
|
struct mgmt_rp_remove_keys {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
uint8_t status;
|
|
|
|
} __packed;
|
2011-01-21 10:49:42 +08:00
|
|
|
|
2011-12-15 05:03:35 +08:00
|
|
|
#define MGMT_OP_DISCONNECT 0x0014
|
2011-01-21 16:05:24 +08:00
|
|
|
struct mgmt_cp_disconnect {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
} __packed;
|
|
|
|
struct mgmt_rp_disconnect {
|
|
|
|
bdaddr_t bdaddr;
|
2011-11-10 20:17:24 +08:00
|
|
|
uint8_t status;
|
2011-01-21 16:05:24 +08:00
|
|
|
} __packed;
|
|
|
|
|
2011-11-07 19:55:30 +08:00
|
|
|
#define MGMT_ADDR_BREDR 0x00
|
2011-11-09 18:57:00 +08:00
|
|
|
#define MGMT_ADDR_LE_PUBLIC 0x01
|
|
|
|
#define MGMT_ADDR_LE_RANDOM 0x02
|
2011-11-07 19:55:30 +08:00
|
|
|
#define MGMT_ADDR_INVALID 0xff
|
|
|
|
|
|
|
|
struct mgmt_addr_info {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
uint8_t type;
|
|
|
|
} __packed;
|
|
|
|
|
2011-12-15 05:03:35 +08:00
|
|
|
#define MGMT_OP_GET_CONNECTIONS 0x0015
|
2011-01-21 19:55:44 +08:00
|
|
|
struct mgmt_rp_get_connections {
|
|
|
|
uint16_t conn_count;
|
2011-11-07 19:55:30 +08:00
|
|
|
struct mgmt_addr_info addr[0];
|
2011-01-21 19:55:44 +08:00
|
|
|
} __packed;
|
|
|
|
|
2011-12-15 05:03:35 +08:00
|
|
|
#define MGMT_OP_PIN_CODE_REPLY 0x0016
|
2011-01-24 17:50:34 +08:00
|
|
|
struct mgmt_cp_pin_code_reply {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
uint8_t pin_len;
|
|
|
|
uint8_t pin_code[16];
|
|
|
|
} __packed;
|
|
|
|
|
2011-12-15 05:03:35 +08:00
|
|
|
#define MGMT_OP_PIN_CODE_NEG_REPLY 0x0017
|
2011-01-24 17:50:34 +08:00
|
|
|
struct mgmt_cp_pin_code_neg_reply {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
} __packed;
|
|
|
|
|
2011-12-15 05:03:35 +08:00
|
|
|
#define MGMT_OP_SET_IO_CAPABILITY 0x0018
|
2011-01-25 19:45:24 +08:00
|
|
|
struct mgmt_cp_set_io_capability {
|
|
|
|
uint8_t io_capability;
|
|
|
|
} __packed;
|
|
|
|
|
2011-12-15 05:03:35 +08:00
|
|
|
#define MGMT_OP_PAIR_DEVICE 0x0019
|
2011-02-09 03:13:20 +08:00
|
|
|
struct mgmt_cp_pair_device {
|
2011-11-11 05:22:32 +08:00
|
|
|
struct mgmt_addr_info addr;
|
2011-02-09 03:13:20 +08:00
|
|
|
uint8_t io_cap;
|
|
|
|
} __packed;
|
|
|
|
struct mgmt_rp_pair_device {
|
2011-11-11 05:22:32 +08:00
|
|
|
struct mgmt_addr_info addr;
|
2011-02-09 03:13:20 +08:00
|
|
|
uint8_t status;
|
|
|
|
} __packed;
|
|
|
|
|
2011-12-15 05:03:35 +08:00
|
|
|
#define MGMT_OP_USER_CONFIRM_REPLY 0x001A
|
2011-02-17 04:46:20 +08:00
|
|
|
struct mgmt_cp_user_confirm_reply {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
} __packed;
|
|
|
|
struct mgmt_rp_user_confirm_reply {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
uint8_t status;
|
|
|
|
} __packed;
|
|
|
|
|
2011-12-15 05:03:35 +08:00
|
|
|
#define MGMT_OP_USER_CONFIRM_NEG_REPLY 0x001B
|
2011-12-14 20:20:14 +08:00
|
|
|
|
2011-12-15 05:03:35 +08:00
|
|
|
#define MGMT_OP_USER_PASSKEY_REPLY 0x001C
|
2011-12-14 20:20:14 +08:00
|
|
|
struct mgmt_cp_user_passkey_reply {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
uint32_t passkey;
|
|
|
|
} __packed;
|
|
|
|
struct mgmt_rp_user_passkey_reply {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
uint8_t status;
|
|
|
|
} __packed;
|
|
|
|
|
2011-12-15 05:03:35 +08:00
|
|
|
#define MGMT_OP_USER_PASSKEY_NEG_REPLY 0x001D
|
2011-12-15 22:14:05 +08:00
|
|
|
struct mgmt_cp_user_passkey_neg_reply {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
} __packed;
|
2011-03-16 01:31:15 +08:00
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_OP_READ_LOCAL_OOB_DATA 0x001E
|
2011-03-26 19:27:07 +08:00
|
|
|
struct mgmt_rp_read_local_oob_data {
|
|
|
|
uint8_t hash[16];
|
|
|
|
uint8_t randomizer[16];
|
|
|
|
} __packed;
|
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_OP_ADD_REMOTE_OOB_DATA 0x001F
|
2011-03-26 19:27:07 +08:00
|
|
|
struct mgmt_cp_add_remote_oob_data {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
uint8_t hash[16];
|
|
|
|
uint8_t randomizer[16];
|
|
|
|
} __packed;
|
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_OP_REMOVE_REMOTE_OOB_DATA 0x0020
|
2011-03-26 19:27:07 +08:00
|
|
|
struct mgmt_cp_remove_remote_oob_data {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
} __packed;
|
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_OP_START_DISCOVERY 0x0021
|
2011-11-10 16:50:44 +08:00
|
|
|
struct mgmt_cp_start_discovery {
|
|
|
|
uint8_t type;
|
|
|
|
} __packed;
|
2011-03-31 19:26:20 +08:00
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_OP_STOP_DISCOVERY 0x0022
|
|
|
|
|
|
|
|
#define MGMT_OP_CONFIRM_NAME 0x0023
|
|
|
|
struct mgmt_cp_confirm_name {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
uint8_t name_known;
|
2011-12-19 20:14:57 +08:00
|
|
|
} __packed;
|
|
|
|
struct mgmt_rp_confirm_name {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
uint8_t status;
|
|
|
|
} __packed;
|
2011-03-31 19:26:20 +08:00
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_OP_BLOCK_DEVICE 0x0024
|
2011-06-15 17:02:03 +08:00
|
|
|
struct mgmt_cp_block_device {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
} __packed;
|
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_OP_UNBLOCK_DEVICE 0x0025
|
2011-06-15 17:02:03 +08:00
|
|
|
struct mgmt_cp_unblock_device {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
} __packed;
|
|
|
|
|
2010-11-02 02:23:03 +08:00
|
|
|
#define MGMT_EV_CMD_COMPLETE 0x0001
|
2010-11-08 01:12:30 +08:00
|
|
|
struct mgmt_ev_cmd_complete {
|
2010-11-02 02:15:10 +08:00
|
|
|
uint16_t opcode;
|
|
|
|
uint8_t data[0];
|
|
|
|
} __packed;
|
|
|
|
|
2010-11-02 02:23:03 +08:00
|
|
|
#define MGMT_EV_CMD_STATUS 0x0002
|
2010-11-08 01:12:30 +08:00
|
|
|
struct mgmt_ev_cmd_status {
|
2010-11-07 23:57:28 +08:00
|
|
|
uint8_t status;
|
|
|
|
uint16_t opcode;
|
|
|
|
} __packed;
|
|
|
|
|
2010-11-02 02:23:03 +08:00
|
|
|
#define MGMT_EV_CONTROLLER_ERROR 0x0003
|
2010-11-08 01:12:30 +08:00
|
|
|
struct mgmt_ev_controller_error {
|
2010-11-07 23:57:28 +08:00
|
|
|
uint8_t error_code;
|
|
|
|
} __packed;
|
2010-11-07 22:45:56 +08:00
|
|
|
|
|
|
|
#define MGMT_EV_INDEX_ADDED 0x0004
|
|
|
|
|
|
|
|
#define MGMT_EV_INDEX_REMOVED 0x0005
|
2010-12-16 06:41:41 +08:00
|
|
|
|
2011-12-13 17:20:06 +08:00
|
|
|
#define MGMT_EV_NEW_SETTINGS 0x0006
|
2010-12-29 20:38:57 +08:00
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_EV_CLASS_OF_DEV_CHANGED 0x0007
|
|
|
|
struct mgmt_ev_class_of_dev_changed {
|
|
|
|
uint8_t class_of_dev[3];
|
|
|
|
} __packed;
|
2010-12-30 21:03:57 +08:00
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_EV_LOCAL_NAME_CHANGED 0x0008
|
|
|
|
struct mgmt_ev_local_name_changed {
|
|
|
|
uint8_t name[MGMT_MAX_NAME_LENGTH];
|
|
|
|
uint8_t short_name[MGMT_MAX_SHORT_NAME_LENGTH];
|
|
|
|
} __packed;
|
2011-01-21 10:49:42 +08:00
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_EV_NEW_LINK_KEY 0x0009
|
2011-11-08 02:09:03 +08:00
|
|
|
struct mgmt_ev_new_link_key {
|
2011-04-28 12:47:54 +08:00
|
|
|
uint8_t store_hint;
|
2011-11-08 02:09:03 +08:00
|
|
|
struct mgmt_link_key_info key;
|
2011-01-21 10:49:42 +08:00
|
|
|
} __packed;
|
2011-01-21 13:03:02 +08:00
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_EV_DEVICE_CONNECTED 0x000A
|
2012-01-17 23:18:41 +08:00
|
|
|
struct mgmt_ev_device_connected {
|
|
|
|
struct mgmt_addr_info addr;
|
|
|
|
uint16_t eir_len;
|
|
|
|
uint8_t eir[0];
|
|
|
|
} __packed;
|
2011-01-21 13:03:02 +08:00
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_EV_DEVICE_DISCONNECTED 0x000B
|
2011-01-21 16:57:09 +08:00
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_EV_CONNECT_FAILED 0x000C
|
2011-01-21 16:57:09 +08:00
|
|
|
struct mgmt_ev_connect_failed {
|
2011-11-07 19:55:30 +08:00
|
|
|
struct mgmt_addr_info addr;
|
2011-01-21 16:57:09 +08:00
|
|
|
uint8_t status;
|
|
|
|
} __packed;
|
2011-01-24 17:50:34 +08:00
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_EV_PIN_CODE_REQUEST 0x000D
|
2011-01-24 17:50:34 +08:00
|
|
|
struct mgmt_ev_pin_code_request {
|
|
|
|
bdaddr_t bdaddr;
|
2011-04-28 18:50:46 +08:00
|
|
|
uint8_t secure;
|
2011-01-24 17:50:34 +08:00
|
|
|
} __packed;
|
2011-02-17 04:46:20 +08:00
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_EV_USER_CONFIRM_REQUEST 0x000E
|
2011-02-17 04:46:20 +08:00
|
|
|
struct mgmt_ev_user_confirm_request {
|
|
|
|
bdaddr_t bdaddr;
|
2011-04-27 02:10:40 +08:00
|
|
|
uint8_t confirm_hint;
|
2011-02-17 04:46:20 +08:00
|
|
|
uint32_t value;
|
|
|
|
} __packed;
|
2011-02-19 03:52:59 +08:00
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_EV_USER_PASSKEY_REQUEST 0x000F
|
|
|
|
struct mgmt_ev_user_passkey_request {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
} __packed;
|
|
|
|
|
2011-02-19 03:52:59 +08:00
|
|
|
#define MGMT_EV_AUTH_FAILED 0x0010
|
|
|
|
struct mgmt_ev_auth_failed {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
uint8_t status;
|
|
|
|
} __packed;
|
2011-03-16 01:31:15 +08:00
|
|
|
|
2011-12-14 20:20:14 +08:00
|
|
|
#define MGMT_EV_DEVICE_FOUND 0x0011
|
2011-03-30 16:48:10 +08:00
|
|
|
struct mgmt_ev_device_found {
|
2011-11-07 19:55:30 +08:00
|
|
|
struct mgmt_addr_info addr;
|
2011-03-30 16:48:10 +08:00
|
|
|
uint8_t dev_class[3];
|
|
|
|
int8_t rssi;
|
2011-12-19 19:25:54 +08:00
|
|
|
uint8_t confirm_name;
|
2011-03-30 16:48:10 +08:00
|
|
|
uint8_t eir[HCI_MAX_EIR_LENGTH];
|
|
|
|
} __packed;
|
2011-03-30 17:24:42 +08:00
|
|
|
|
2012-01-18 03:39:55 +08:00
|
|
|
#define MGMT_EV_DISCOVERING 0x0012
|
2011-07-28 20:00:22 +08:00
|
|
|
|
2012-01-18 03:39:55 +08:00
|
|
|
#define MGMT_EV_DEVICE_BLOCKED 0x0013
|
2011-07-28 20:00:22 +08:00
|
|
|
struct mgmt_ev_device_blocked {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
} __packed;
|
|
|
|
|
2012-01-18 03:39:55 +08:00
|
|
|
#define MGMT_EV_DEVICE_UNBLOCKED 0x0014
|
2011-07-28 20:00:22 +08:00
|
|
|
struct mgmt_ev_device_unblocked {
|
|
|
|
bdaddr_t bdaddr;
|
|
|
|
} __packed;
|