| 
									
										
										
										
											2010-12-08 00:21:05 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |    BlueZ - Bluetooth protocol stack for Linux | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Copyright (C) 2010  Nokia Corporation | 
					
						
							| 
									
										
										
										
											2012-02-17 14:50:39 +02:00
										 |  |  |    Copyright (C) 2011-2012  Intel Corporation | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:05 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |    This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |    it under the terms of the GNU General Public License version 2 as | 
					
						
							|  |  |  |    published by the Free Software Foundation; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | 
					
						
							|  |  |  |    OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. | 
					
						
							|  |  |  |    IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY | 
					
						
							|  |  |  |    CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES | 
					
						
							|  |  |  |    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
					
						
							|  |  |  |    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 
					
						
							|  |  |  |    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, | 
					
						
							|  |  |  |    COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS | 
					
						
							|  |  |  |    SOFTWARE IS DISCLAIMED. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-25 19:05:48 +01:00
										 |  |  | #define MGMT_INDEX_NONE			0xFFFF
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-11 18:10:00 +02:00
										 |  |  | #define MGMT_STATUS_SUCCESS		0x00
 | 
					
						
							|  |  |  | #define MGMT_STATUS_UNKNOWN_COMMAND	0x01
 | 
					
						
							|  |  |  | #define MGMT_STATUS_NOT_CONNECTED	0x02
 | 
					
						
							|  |  |  | #define MGMT_STATUS_FAILED		0x03
 | 
					
						
							|  |  |  | #define MGMT_STATUS_CONNECT_FAILED	0x04
 | 
					
						
							|  |  |  | #define MGMT_STATUS_AUTH_FAILED		0x05
 | 
					
						
							|  |  |  | #define MGMT_STATUS_NOT_PAIRED		0x06
 | 
					
						
							|  |  |  | #define MGMT_STATUS_NO_RESOURCES	0x07
 | 
					
						
							|  |  |  | #define MGMT_STATUS_TIMEOUT		0x08
 | 
					
						
							|  |  |  | #define MGMT_STATUS_ALREADY_CONNECTED	0x09
 | 
					
						
							|  |  |  | #define MGMT_STATUS_BUSY		0x0a
 | 
					
						
							|  |  |  | #define MGMT_STATUS_REJECTED		0x0b
 | 
					
						
							|  |  |  | #define MGMT_STATUS_NOT_SUPPORTED	0x0c
 | 
					
						
							|  |  |  | #define MGMT_STATUS_INVALID_PARAMS	0x0d
 | 
					
						
							|  |  |  | #define MGMT_STATUS_DISCONNECTED	0x0e
 | 
					
						
							|  |  |  | #define MGMT_STATUS_NOT_POWERED		0x0f
 | 
					
						
							| 
									
										
										
										
											2012-02-02 04:02:29 +02:00
										 |  |  | #define MGMT_STATUS_CANCELLED		0x10
 | 
					
						
							| 
									
										
										
										
											2012-03-02 03:13:19 +02:00
										 |  |  | #define MGMT_STATUS_INVALID_INDEX	0x11
 | 
					
						
							| 
									
										
										
										
											2011-11-11 18:10:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:05 +02:00
										 |  |  | struct mgmt_hdr { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__le16	opcode; | 
					
						
							|  |  |  | 	__le16	index; | 
					
						
							|  |  |  | 	__le16	len; | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:05 +02:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | struct mgmt_addr_info { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	bdaddr_t	bdaddr; | 
					
						
							|  |  |  | 	__u8		type; | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_ADDR_INFO_SIZE		7
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:04 +02:00
										 |  |  | #define MGMT_OP_READ_VERSION		0x0001
 | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_READ_VERSION_SIZE		0
 | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:04 +02:00
										 |  |  | struct mgmt_rp_read_version { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	version; | 
					
						
							|  |  |  | 	__le16	revision; | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:04 +02:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-13 16:59:33 +02:00
										 |  |  | #define MGMT_OP_READ_COMMANDS		0x0002
 | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_READ_COMMANDS_SIZE		0
 | 
					
						
							| 
									
										
										
										
											2012-02-13 16:59:33 +02:00
										 |  |  | struct mgmt_rp_read_commands { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__le16	num_commands; | 
					
						
							|  |  |  | 	__le16	num_events; | 
					
						
							|  |  |  | 	__le16	opcodes[0]; | 
					
						
							| 
									
										
										
										
											2012-02-13 16:59:33 +02:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:05 +02:00
										 |  |  | #define MGMT_OP_READ_INDEX_LIST		0x0003
 | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_READ_INDEX_LIST_SIZE	0
 | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:05 +02:00
										 |  |  | struct mgmt_rp_read_index_list { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__le16	num_controllers; | 
					
						
							|  |  |  | 	__le16	index[0]; | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:05 +02:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:36 +02: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)
 | 
					
						
							| 
									
										
										
										
											2012-02-22 19:19:09 +02:00
										 |  |  | #define MGMT_MAX_SHORT_NAME_LENGTH	(HCI_MAX_SHORT_NAME_LENGTH + 1)
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #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-16 14:29:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:06 +02:00
										 |  |  | #define MGMT_OP_READ_INFO		0x0004
 | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_READ_INFO_SIZE		0
 | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:06 +02:00
										 |  |  | struct mgmt_rp_read_info { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	bdaddr_t	bdaddr; | 
					
						
							|  |  |  | 	__u8		version; | 
					
						
							|  |  |  | 	__le16		manufacturer; | 
					
						
							|  |  |  | 	__le32		supported_settings; | 
					
						
							|  |  |  | 	__le32		current_settings; | 
					
						
							|  |  |  | 	__u8		dev_class[3]; | 
					
						
							|  |  |  | 	__u8		name[MGMT_MAX_NAME_LENGTH]; | 
					
						
							|  |  |  | 	__u8		short_name[MGMT_MAX_SHORT_NAME_LENGTH]; | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:06 +02:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-30 00:38:22 +02:00
										 |  |  | struct mgmt_mode { | 
					
						
							|  |  |  | 	__u8 val; | 
					
						
							| 
									
										
										
										
											2010-12-16 10:17:38 +02:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_SETTING_SIZE		1
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-30 00:38:22 +02:00
										 |  |  | #define MGMT_OP_SET_POWERED		0x0005
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | #define MGMT_OP_SET_DISCOVERABLE	0x0006
 | 
					
						
							| 
									
										
										
										
											2011-11-07 22:16:02 +02:00
										 |  |  | struct mgmt_cp_set_discoverable { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	val; | 
					
						
							| 
									
										
										
										
											2012-03-19 09:42:31 +02:00
										 |  |  | 	__le16	timeout; | 
					
						
							| 
									
										
										
										
											2011-11-07 22:16:02 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_SET_DISCOVERABLE_SIZE	3
 | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-30 00:18:33 +02:00
										 |  |  | #define MGMT_OP_SET_CONNECTABLE		0x0007
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | #define MGMT_OP_SET_FAST_CONNECTABLE	0x0008
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | #define MGMT_OP_SET_PAIRABLE		0x0009
 | 
					
						
							| 
									
										
										
										
											2011-01-26 13:11:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | #define MGMT_OP_SET_LINK_SECURITY	0x000A
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_OP_SET_SSP			0x000B
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_OP_SET_HS			0x000C
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_OP_SET_LE			0x000D
 | 
					
						
							|  |  |  | #define MGMT_OP_SET_DEV_CLASS		0x000E
 | 
					
						
							|  |  |  | struct mgmt_cp_set_dev_class { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	major; | 
					
						
							|  |  |  | 	__u8	minor; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_SET_DEV_CLASS_SIZE		2
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_OP_SET_LOCAL_NAME		0x000F
 | 
					
						
							|  |  |  | struct mgmt_cp_set_local_name { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	name[MGMT_MAX_NAME_LENGTH]; | 
					
						
							|  |  |  | 	__u8	short_name[MGMT_MAX_SHORT_NAME_LENGTH]; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_SET_LOCAL_NAME_SIZE	260
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_OP_ADD_UUID		0x0010
 | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | struct mgmt_cp_add_uuid { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	uuid[16]; | 
					
						
							|  |  |  | 	__u8	svc_hint; | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_ADD_UUID_SIZE		17
 | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | #define MGMT_OP_REMOVE_UUID		0x0011
 | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | struct mgmt_cp_remove_uuid { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	uuid[16]; | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_REMOVE_UUID_SIZE		16
 | 
					
						
							| 
									
										
										
										
											2011-01-04 12:08:51 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:38 +02:00
										 |  |  | struct mgmt_link_key_info { | 
					
						
							| 
									
										
										
										
											2012-02-17 14:06:34 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2012-03-06 23:45:42 -03:00
										 |  |  | 	__u8	type; | 
					
						
							|  |  |  | 	__u8	val[16]; | 
					
						
							|  |  |  | 	__u8	pin_len; | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | #define MGMT_OP_LOAD_LINK_KEYS		0x0012
 | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:38 +02:00
										 |  |  | struct mgmt_cp_load_link_keys { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	debug_keys; | 
					
						
							|  |  |  | 	__le16	key_count; | 
					
						
							|  |  |  | 	struct	mgmt_link_key_info keys[0]; | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_LOAD_LINK_KEYS_SIZE	3
 | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | struct mgmt_ltk_info { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	authenticated; | 
					
						
							|  |  |  | 	__u8	master; | 
					
						
							|  |  |  | 	__u8	enc_size; | 
					
						
							|  |  |  | 	__le16	ediv; | 
					
						
							|  |  |  | 	__u8	rand[8]; | 
					
						
							|  |  |  | 	__u8	val[16]; | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_OP_LOAD_LONG_TERM_KEYS	0x0013
 | 
					
						
							|  |  |  | struct mgmt_cp_load_long_term_keys { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__le16	key_count; | 
					
						
							|  |  |  | 	struct	mgmt_ltk_info keys[0]; | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_LOAD_LONG_TERM_KEYS_SIZE	2
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | #define MGMT_OP_DISCONNECT		0x0014
 | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | struct mgmt_cp_disconnect { | 
					
						
							| 
									
										
										
										
											2012-02-09 14:27:38 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_DISCONNECT_SIZE		MGMT_ADDR_INFO_SIZE
 | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | struct mgmt_rp_disconnect { | 
					
						
							| 
									
										
										
										
											2012-02-09 14:27:38 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2011-01-20 12:40:27 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | #define MGMT_OP_GET_CONNECTIONS		0x0015
 | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_GET_CONNECTIONS_SIZE	0
 | 
					
						
							| 
									
										
										
										
											2011-01-21 13:56:35 +02:00
										 |  |  | struct mgmt_rp_get_connections { | 
					
						
							|  |  |  | 	__le16 conn_count; | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:39 +02:00
										 |  |  | 	struct mgmt_addr_info addr[0]; | 
					
						
							| 
									
										
										
										
											2011-01-21 13:56:35 +02:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | #define MGMT_OP_PIN_CODE_REPLY		0x0016
 | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | struct mgmt_cp_pin_code_reply { | 
					
						
							| 
									
										
										
										
											2012-02-17 14:24:57 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	pin_len; | 
					
						
							|  |  |  | 	__u8	pin_code[16]; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_PIN_CODE_REPLY_SIZE	(MGMT_ADDR_INFO_SIZE + 17)
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:59 -03:00
										 |  |  | struct mgmt_rp_pin_code_reply { | 
					
						
							| 
									
										
										
										
											2012-02-17 14:24:57 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:59 -03:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | #define MGMT_OP_PIN_CODE_NEG_REPLY	0x0017
 | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | struct mgmt_cp_pin_code_neg_reply { | 
					
						
							| 
									
										
										
										
											2012-02-17 14:24:57 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_PIN_CODE_NEG_REPLY_SIZE	MGMT_ADDR_INFO_SIZE
 | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | #define MGMT_OP_SET_IO_CAPABILITY	0x0018
 | 
					
						
							| 
									
										
										
										
											2011-01-25 13:28:33 +02:00
										 |  |  | struct mgmt_cp_set_io_capability { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	io_capability; | 
					
						
							| 
									
										
										
										
											2011-01-25 13:28:33 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_SET_IO_CAPABILITY_SIZE	1
 | 
					
						
							| 
									
										
										
										
											2011-01-25 13:28:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | #define MGMT_OP_PAIR_DEVICE		0x0019
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | struct mgmt_cp_pair_device { | 
					
						
							| 
									
										
										
										
											2011-11-11 00:07:34 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	io_cap; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_PAIR_DEVICE_SIZE		(MGMT_ADDR_INFO_SIZE + 1)
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | struct mgmt_rp_pair_device { | 
					
						
							| 
									
										
										
										
											2011-11-11 00:07:34 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:56 -03:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | #define MGMT_OP_CANCEL_PAIR_DEVICE	0x001A
 | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_CANCEL_PAIR_DEVICE_SIZE	MGMT_ADDR_INFO_SIZE
 | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_OP_UNPAIR_DEVICE		0x001B
 | 
					
						
							|  |  |  | struct mgmt_cp_unpair_device { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | 	__u8 disconnect; | 
					
						
							|  |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_UNPAIR_DEVICE_SIZE		(MGMT_ADDR_INFO_SIZE + 1)
 | 
					
						
							| 
									
										
										
										
											2012-02-09 13:50:12 +02:00
										 |  |  | struct mgmt_rp_unpair_device { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_OP_USER_CONFIRM_REPLY	0x001C
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | struct mgmt_cp_user_confirm_reply { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_USER_CONFIRM_REPLY_SIZE	MGMT_ADDR_INFO_SIZE
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | struct mgmt_rp_user_confirm_reply { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_OP_USER_CONFIRM_NEG_REPLY	0x001D
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | struct mgmt_cp_user_confirm_neg_reply { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_USER_CONFIRM_NEG_REPLY_SIZE MGMT_ADDR_INFO_SIZE
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_OP_USER_PASSKEY_REPLY	0x001E
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | struct mgmt_cp_user_passkey_reply { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__le32	passkey; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_USER_PASSKEY_REPLY_SIZE	(MGMT_ADDR_INFO_SIZE + 4)
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | struct mgmt_rp_user_passkey_reply { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_OP_USER_PASSKEY_NEG_REPLY	0x001F
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | struct mgmt_cp_user_passkey_neg_reply { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:37 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_USER_PASSKEY_NEG_REPLY_SIZE MGMT_ADDR_INFO_SIZE
 | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_OP_READ_LOCAL_OOB_DATA	0x0020
 | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_READ_LOCAL_OOB_DATA_SIZE	0
 | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | struct mgmt_rp_read_local_oob_data { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	hash[16]; | 
					
						
							|  |  |  | 	__u8	randomizer[16]; | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_OP_ADD_REMOTE_OOB_DATA	0x0021
 | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | struct mgmt_cp_add_remote_oob_data { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:44:09 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	hash[16]; | 
					
						
							|  |  |  | 	__u8	randomizer[16]; | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_ADD_REMOTE_OOB_DATA_SIZE	(MGMT_ADDR_INFO_SIZE + 32)
 | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_OP_REMOVE_REMOTE_OOB_DATA	0x0022
 | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | struct mgmt_cp_remove_remote_oob_data { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:44:09 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_REMOVE_REMOTE_OOB_DATA_SIZE MGMT_ADDR_INFO_SIZE
 | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:22 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_OP_START_DISCOVERY		0x0023
 | 
					
						
							| 
									
										
										
										
											2011-11-12 11:58:22 +02:00
										 |  |  | struct mgmt_cp_start_discovery { | 
					
						
							|  |  |  | 	__u8 type; | 
					
						
							|  |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_START_DISCOVERY_SIZE	1
 | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_OP_STOP_DISCOVERY		0x0024
 | 
					
						
							| 
									
										
										
										
											2012-02-20 23:25:18 +02:00
										 |  |  | struct mgmt_cp_stop_discovery { | 
					
						
							|  |  |  | 	__u8 type; | 
					
						
							|  |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_STOP_DISCOVERY_SIZE	1
 | 
					
						
							| 
									
										
										
										
											2011-04-27 10:29:56 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_OP_CONFIRM_NAME		0x0025
 | 
					
						
							| 
									
										
										
										
											2011-12-19 14:29:08 +02:00
										 |  |  | struct mgmt_cp_confirm_name { | 
					
						
							| 
									
										
										
										
											2012-02-17 14:27:06 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	name_known; | 
					
						
							| 
									
										
										
										
											2011-12-19 14:29:08 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_CONFIRM_NAME_SIZE		(MGMT_ADDR_INFO_SIZE + 1)
 | 
					
						
							| 
									
										
										
										
											2011-12-19 14:29:08 +02:00
										 |  |  | struct mgmt_rp_confirm_name { | 
					
						
							| 
									
										
										
										
											2012-02-17 14:27:06 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2011-12-19 14:29:08 +02:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_OP_BLOCK_DEVICE		0x0026
 | 
					
						
							| 
									
										
										
										
											2011-06-15 12:01:15 +03:00
										 |  |  | struct mgmt_cp_block_device { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:56:11 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2011-06-15 12:01:15 +03:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_BLOCK_DEVICE_SIZE		MGMT_ADDR_INFO_SIZE
 | 
					
						
							| 
									
										
										
										
											2011-06-15 12:01:15 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_OP_UNBLOCK_DEVICE		0x0027
 | 
					
						
							| 
									
										
										
										
											2011-06-15 12:01:15 +03:00
										 |  |  | struct mgmt_cp_unblock_device { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:56:11 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2011-06-15 12:01:15 +03:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-03-01 22:23:42 +02:00
										 |  |  | #define MGMT_UNBLOCK_DEVICE_SIZE	MGMT_ADDR_INFO_SIZE
 | 
					
						
							| 
									
										
										
										
											2011-06-15 12:01:15 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-11 20:00:29 -07:00
										 |  |  | #define MGMT_OP_SET_DEVICE_ID		0x0028
 | 
					
						
							|  |  |  | struct mgmt_cp_set_device_id { | 
					
						
							|  |  |  | 	__le16	source; | 
					
						
							|  |  |  | 	__le16	vendor; | 
					
						
							|  |  |  | 	__le16	product; | 
					
						
							|  |  |  | 	__le16	version; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | #define MGMT_SET_DEVICE_ID_SIZE		8
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:05 +02:00
										 |  |  | #define MGMT_EV_CMD_COMPLETE		0x0001
 | 
					
						
							|  |  |  | struct mgmt_ev_cmd_complete { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__le16	opcode; | 
					
						
							|  |  |  | 	__u8	status; | 
					
						
							|  |  |  | 	__u8	data[0]; | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:05 +02:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_EV_CMD_STATUS		0x0002
 | 
					
						
							|  |  |  | struct mgmt_ev_cmd_status { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__le16	opcode; | 
					
						
							|  |  |  | 	__u8	status; | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:05 +02:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_EV_CONTROLLER_ERROR	0x0003
 | 
					
						
							|  |  |  | struct mgmt_ev_controller_error { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	error_code; | 
					
						
							| 
									
										
										
										
											2010-12-08 00:21:05 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2010-12-13 21:07:07 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_EV_INDEX_ADDED		0x0004
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_EV_INDEX_REMOVED		0x0005
 | 
					
						
							| 
									
										
										
										
											2010-12-16 10:00:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | #define MGMT_EV_NEW_SETTINGS		0x0006
 | 
					
						
							| 
									
										
										
										
											2010-12-29 16:00:25 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | #define MGMT_EV_CLASS_OF_DEV_CHANGED	0x0007
 | 
					
						
							|  |  |  | struct mgmt_ev_class_of_dev_changed { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	dev_class[3]; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2011-01-26 13:11:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | #define MGMT_EV_LOCAL_NAME_CHANGED	0x0008
 | 
					
						
							|  |  |  | struct mgmt_ev_local_name_changed { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	name[MGMT_MAX_NAME_LENGTH]; | 
					
						
							|  |  |  | 	__u8	short_name[MGMT_MAX_SHORT_NAME_LENGTH]; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | #define MGMT_EV_NEW_LINK_KEY		0x0009
 | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:38 +02:00
										 |  |  | struct mgmt_ev_new_link_key { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	store_hint; | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:38 +02:00
										 |  |  | 	struct mgmt_link_key_info key; | 
					
						
							| 
									
										
										
										
											2011-01-17 14:41:05 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2011-01-20 12:34:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_EV_NEW_LONG_TERM_KEY	0x000A
 | 
					
						
							|  |  |  | struct mgmt_ev_new_long_term_key { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	store_hint; | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | 	struct mgmt_ltk_info key; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_EV_DEVICE_CONNECTED	0x000B
 | 
					
						
							| 
									
										
										
										
											2012-01-17 21:48:47 +02:00
										 |  |  | struct mgmt_ev_device_connected { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__le32	flags; | 
					
						
							|  |  |  | 	__le16	eir_len; | 
					
						
							|  |  |  | 	__u8	eir[0]; | 
					
						
							| 
									
										
										
										
											2012-01-17 21:48:47 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2011-01-20 12:34:39 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-09 09:52:30 +02:00
										 |  |  | #define MGMT_DEV_DISCONN_UNKNOWN	0x00
 | 
					
						
							|  |  |  | #define MGMT_DEV_DISCONN_TIMEOUT	0x01
 | 
					
						
							|  |  |  | #define MGMT_DEV_DISCONN_LOCAL_HOST	0x02
 | 
					
						
							|  |  |  | #define MGMT_DEV_DISCONN_REMOTE		0x03
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_EV_DEVICE_DISCONNECTED	0x000C
 | 
					
						
							| 
									
										
										
										
											2012-08-09 09:52:30 +02:00
										 |  |  | struct mgmt_ev_device_disconnected { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | 	__u8	reason; | 
					
						
							|  |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:09:08 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_EV_CONNECT_FAILED		0x000D
 | 
					
						
							| 
									
										
										
										
											2011-01-22 06:09:08 +02:00
										 |  |  | struct mgmt_ev_connect_failed { | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:39 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	status; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:09:08 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_EV_PIN_CODE_REQUEST	0x000E
 | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | struct mgmt_ev_pin_code_request { | 
					
						
							| 
									
										
										
										
											2012-02-17 14:24:57 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	secure; | 
					
						
							| 
									
										
										
										
											2011-01-22 06:10:07 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_EV_USER_CONFIRM_REQUEST	0x000F
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | struct mgmt_ev_user_confirm_request { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	confirm_hint; | 
					
						
							|  |  |  | 	__le32	value; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:05:57 -03:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:00 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_EV_USER_PASSKEY_REQUEST	0x0010
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | struct mgmt_ev_user_passkey_request { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:26:12 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:40 +02:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_EV_AUTH_FAILED		0x0011
 | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:00 -03:00
										 |  |  | struct mgmt_ev_auth_failed { | 
					
						
							| 
									
										
										
										
											2012-02-09 16:07:29 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	status; | 
					
						
							| 
									
										
										
										
											2011-02-19 12:06:00 -03:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2011-03-16 14:29:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-23 00:00:32 +02:00
										 |  |  | #define MGMT_DEV_FOUND_CONFIRM_NAME    0x01
 | 
					
						
							|  |  |  | #define MGMT_DEV_FOUND_LEGACY_PAIRING  0x02
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_EV_DEVICE_FOUND		0x0012
 | 
					
						
							| 
									
										
										
										
											2011-03-30 23:57:16 +03:00
										 |  |  | struct mgmt_ev_device_found { | 
					
						
							| 
									
										
										
										
											2011-11-07 23:13:39 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__s8	rssi; | 
					
						
							| 
									
										
										
										
											2012-06-11 09:18:51 -04:00
										 |  |  | 	__le32	flags; | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__le16	eir_len; | 
					
						
							|  |  |  | 	__u8	eir[0]; | 
					
						
							| 
									
										
										
										
											2011-03-30 23:57:16 +03:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2011-03-30 13:18:12 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_EV_DISCOVERING		0x0013
 | 
					
						
							| 
									
										
										
										
											2012-02-20 23:30:44 +02:00
										 |  |  | struct mgmt_ev_discovering { | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	type; | 
					
						
							|  |  |  | 	__u8	discovering; | 
					
						
							| 
									
										
										
										
											2012-02-20 23:30:44 +02:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2011-08-25 16:48:02 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_EV_DEVICE_BLOCKED		0x0014
 | 
					
						
							| 
									
										
										
										
											2011-08-25 16:48:02 +03:00
										 |  |  | struct mgmt_ev_device_blocked { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:56:11 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2011-08-25 16:48:02 +03:00
										 |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | #define MGMT_EV_DEVICE_UNBLOCKED	0x0015
 | 
					
						
							| 
									
										
										
										
											2011-08-25 16:48:02 +03:00
										 |  |  | struct mgmt_ev_device_unblocked { | 
					
						
							| 
									
										
										
										
											2012-02-09 15:56:11 +02:00
										 |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2011-08-25 16:48:02 +03:00
										 |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-02-09 17:21:16 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_EV_DEVICE_UNPAIRED		0x0016
 | 
					
						
							|  |  |  | struct mgmt_ev_device_unpaired { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2012-09-06 18:39:26 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_EV_PASSKEY_NOTIFY		0x0017
 | 
					
						
							|  |  |  | struct mgmt_ev_passkey_notify { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | 	__le32	passkey; | 
					
						
							|  |  |  | 	__u8	entered; | 
					
						
							|  |  |  | } __packed; |