| 
									
										
										
										
											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
 | 
					
						
							| 
									
										
										
										
											2013-05-29 09:51:29 +03:00
										 |  |  | #define MGMT_STATUS_RFKILLED		0x12
 | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							| 
									
										
										
										
											2014-07-30 09:22:23 +03:00
										 |  |  | #define MGMT_SETTING_BONDABLE		0x00000010
 | 
					
						
							| 
									
										
										
										
											2011-12-15 00:47:35 +02:00
										 |  |  | #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
 | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:09 +03:00
										 |  |  | #define MGMT_SETTING_ADVERTISING	0x00000400
 | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:22 -08:00
										 |  |  | #define MGMT_SETTING_SECURE_CONN	0x00000800
 | 
					
						
							| 
									
										
										
										
											2014-01-31 11:55:21 -08:00
										 |  |  | #define MGMT_SETTING_DEBUG_KEYS		0x00001000
 | 
					
						
							| 
									
										
										
										
											2014-02-22 19:06:34 +02:00
										 |  |  | #define MGMT_SETTING_PRIVACY		0x00002000
 | 
					
						
							| 
									
										
										
										
											2014-07-04 00:46:56 +02:00
										 |  |  | #define MGMT_SETTING_CONFIGURATION	0x00004000
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-30 09:22:23 +03:00
										 |  |  | #define MGMT_OP_SET_BONDABLE		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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-23 13:19:53 +03:00
										 |  |  | #define MGMT_LTK_UNAUTHENTICATED	0x00
 | 
					
						
							|  |  |  | #define MGMT_LTK_AUTHENTICATED		0x01
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-01 23:42:38 +02:00
										 |  |  | struct mgmt_ltk_info { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							| 
									
										
										
										
											2014-01-31 18:42:17 -08:00
										 |  |  | 	__u8	type; | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__u8	master; | 
					
						
							|  |  |  | 	__u8	enc_size; | 
					
						
							|  |  |  | 	__le16	ediv; | 
					
						
							| 
									
										
										
										
											2014-02-27 16:00:28 -08:00
										 |  |  | 	__le64	rand; | 
					
						
							| 
									
										
										
										
											2012-03-06 23:39:50 -03:00
										 |  |  | 	__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; | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:26 -08:00
										 |  |  | struct mgmt_rp_read_local_oob_ext_data { | 
					
						
							|  |  |  | 	__u8	hash192[16]; | 
					
						
							|  |  |  | 	__u8	randomizer192[16]; | 
					
						
							|  |  |  | 	__u8	hash256[16]; | 
					
						
							|  |  |  | 	__u8	randomizer256[16]; | 
					
						
							|  |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2011-03-22 13:12:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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)
 | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:30 -08:00
										 |  |  | struct mgmt_cp_add_remote_oob_ext_data { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | 	__u8	hash192[16]; | 
					
						
							|  |  |  | 	__u8	randomizer192[16]; | 
					
						
							|  |  |  | 	__u8	hash256[16]; | 
					
						
							|  |  |  | 	__u8	randomizer256[16]; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | #define MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE (MGMT_ADDR_INFO_SIZE + 64)
 | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-25 13:26:10 +03:00
										 |  |  | #define MGMT_OP_SET_ADVERTISING		0x0029
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 13:43:14 +03:00
										 |  |  | #define MGMT_OP_SET_BREDR		0x002A
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-02 04:41:30 -07:00
										 |  |  | #define MGMT_OP_SET_STATIC_ADDRESS	0x002B
 | 
					
						
							|  |  |  | struct mgmt_cp_set_static_address { | 
					
						
							|  |  |  | 	bdaddr_t bdaddr; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | #define MGMT_SET_STATIC_ADDRESS_SIZE	6
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-11 08:23:20 -07:00
										 |  |  | #define MGMT_OP_SET_SCAN_PARAMS		0x002C
 | 
					
						
							|  |  |  | struct mgmt_cp_set_scan_params { | 
					
						
							|  |  |  | 	__le16	interval; | 
					
						
							|  |  |  | 	__le16	window; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | #define MGMT_SET_SCAN_PARAMS_SIZE	4
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-10 02:07:23 -08:00
										 |  |  | #define MGMT_OP_SET_SECURE_CONN		0x002D
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-31 11:55:22 -08:00
										 |  |  | #define MGMT_OP_SET_DEBUG_KEYS		0x002E
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-22 19:06:34 +02:00
										 |  |  | #define MGMT_OP_SET_PRIVACY		0x002F
 | 
					
						
							|  |  |  | struct mgmt_cp_set_privacy { | 
					
						
							|  |  |  | 	__u8 privacy; | 
					
						
							|  |  |  | 	__u8 irk[16]; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | #define MGMT_SET_PRIVACY_SIZE		17
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-18 10:19:35 +02:00
										 |  |  | struct mgmt_irk_info { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | 	__u8 val[16]; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_OP_LOAD_IRKS		0x0030
 | 
					
						
							|  |  |  | struct mgmt_cp_load_irks { | 
					
						
							|  |  |  | 	__le16 irk_count; | 
					
						
							|  |  |  | 	struct mgmt_irk_info irks[0]; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | #define MGMT_LOAD_IRKS_SIZE		2
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-14 13:43:03 +02:00
										 |  |  | #define MGMT_OP_GET_CONN_INFO		0x0031
 | 
					
						
							|  |  |  | struct mgmt_cp_get_conn_info { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | #define MGMT_GET_CONN_INFO_SIZE		MGMT_ADDR_INFO_SIZE
 | 
					
						
							|  |  |  | struct mgmt_rp_get_conn_info { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | 	__s8	rssi; | 
					
						
							|  |  |  | 	__s8	tx_power; | 
					
						
							|  |  |  | 	__s8	max_tx_power; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 17:54:07 +03:00
										 |  |  | #define MGMT_OP_GET_CLOCK_INFO		0x0032
 | 
					
						
							|  |  |  | struct mgmt_cp_get_clock_info { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | #define MGMT_GET_CLOCK_INFO_SIZE	MGMT_ADDR_INFO_SIZE
 | 
					
						
							|  |  |  | struct mgmt_rp_get_clock_info { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | 	__le32  local_clock; | 
					
						
							|  |  |  | 	__le32  piconet_clock; | 
					
						
							|  |  |  | 	__le16  accuracy; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 19:44:03 +02:00
										 |  |  | #define MGMT_OP_ADD_DEVICE		0x0033
 | 
					
						
							|  |  |  | struct mgmt_cp_add_device { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | 	__u8	action; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | #define MGMT_ADD_DEVICE_SIZE		(MGMT_ADDR_INFO_SIZE + 1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_OP_REMOVE_DEVICE		0x0034
 | 
					
						
							|  |  |  | struct mgmt_cp_remove_device { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | #define MGMT_REMOVE_DEVICE_SIZE		MGMT_ADDR_INFO_SIZE
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-02 17:37:29 +03:00
										 |  |  | struct mgmt_conn_param { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | 	__le16 min_interval; | 
					
						
							|  |  |  | 	__le16 max_interval; | 
					
						
							|  |  |  | 	__le16 latency; | 
					
						
							|  |  |  | 	__le16 timeout; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_OP_LOAD_CONN_PARAM		0x0035
 | 
					
						
							|  |  |  | struct mgmt_cp_load_conn_param { | 
					
						
							|  |  |  | 	__le16 param_count; | 
					
						
							|  |  |  | 	struct mgmt_conn_param params[0]; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | #define MGMT_LOAD_CONN_PARAM_SIZE	2
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-02 22:10:52 +02:00
										 |  |  | #define MGMT_OP_READ_UNCONF_INDEX_LIST	0x0036
 | 
					
						
							|  |  |  | #define MGMT_READ_UNCONF_INDEX_LIST_SIZE 0
 | 
					
						
							|  |  |  | struct mgmt_rp_read_unconf_index_list { | 
					
						
							|  |  |  | 	__le16	num_controllers; | 
					
						
							|  |  |  | 	__le16	index[0]; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 13:23:38 +02:00
										 |  |  | #define MGMT_OPTION_EXTERNAL_CONFIG	0x00000001
 | 
					
						
							|  |  |  | #define MGMT_OPTION_PUBLIC_ADDRESS	0x00000002
 | 
					
						
							| 
									
										
										
										
											2014-07-04 00:46:56 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_OP_READ_CONFIG_INFO	0x0037
 | 
					
						
							|  |  |  | #define MGMT_READ_CONFIG_INFO_SIZE	0
 | 
					
						
							|  |  |  | struct mgmt_rp_read_config_info { | 
					
						
							|  |  |  | 	__le16	manufacturer; | 
					
						
							|  |  |  | 	__le32	supported_options; | 
					
						
							|  |  |  | 	__le32	missing_options; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 18:11:55 +02:00
										 |  |  | #define MGMT_OP_SET_EXTERNAL_CONFIG	0x0038
 | 
					
						
							|  |  |  | struct mgmt_cp_set_external_config { | 
					
						
							|  |  |  | 	__u8 config; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | #define MGMT_SET_EXTERNAL_CONFIG_SIZE	1
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-06 12:11:15 +02:00
										 |  |  | #define MGMT_OP_SET_PUBLIC_ADDRESS	0x0039
 | 
					
						
							|  |  |  | struct mgmt_cp_set_public_address { | 
					
						
							|  |  |  | 	bdaddr_t bdaddr; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | #define MGMT_SET_PUBLIC_ADDRESS_SIZE	6
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							| 
									
										
										
										
											2014-07-01 14:11:20 +02:00
										 |  |  | #define MGMT_DEV_FOUND_NOT_CONNECTABLE 0x04
 | 
					
						
							| 
									
										
										
										
											2012-02-23 00:00:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2014-02-19 15:18:31 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_EV_NEW_IRK			0x0018
 | 
					
						
							|  |  |  | struct mgmt_ev_new_irk { | 
					
						
							|  |  |  | 	__u8     store_hint; | 
					
						
							|  |  |  | 	bdaddr_t rpa; | 
					
						
							|  |  |  | 	struct mgmt_irk_info irk; | 
					
						
							|  |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2014-03-09 12:19:17 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct mgmt_csrk_info { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | 	__u8 master; | 
					
						
							|  |  |  | 	__u8 val[16]; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_EV_NEW_CSRK		0x0019
 | 
					
						
							|  |  |  | struct mgmt_ev_new_csrk { | 
					
						
							|  |  |  | 	__u8 store_hint; | 
					
						
							|  |  |  | 	struct mgmt_csrk_info key; | 
					
						
							|  |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2014-06-29 22:28:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_EV_DEVICE_ADDED		0x001a
 | 
					
						
							|  |  |  | struct mgmt_ev_device_added { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | 	__u8 action; | 
					
						
							|  |  |  | } __packed; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_EV_DEVICE_REMOVED		0x001b
 | 
					
						
							|  |  |  | struct mgmt_ev_device_removed { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2014-07-01 18:10:11 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_EV_NEW_CONN_PARAM		0x001c
 | 
					
						
							|  |  |  | struct mgmt_ev_new_conn_param { | 
					
						
							|  |  |  | 	struct mgmt_addr_info addr; | 
					
						
							|  |  |  | 	__u8 store_hint; | 
					
						
							|  |  |  | 	__le16 min_interval; | 
					
						
							|  |  |  | 	__le16 max_interval; | 
					
						
							|  |  |  | 	__le16 latency; | 
					
						
							|  |  |  | 	__le16 timeout; | 
					
						
							|  |  |  | } __packed; | 
					
						
							| 
									
										
										
										
											2014-07-02 21:30:54 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_EV_UNCONF_INDEX_ADDED	0x001d
 | 
					
						
							| 
									
										
										
										
											2014-07-02 21:30:55 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_EV_UNCONF_INDEX_REMOVED	0x001e
 | 
					
						
							| 
									
										
										
										
											2014-07-04 19:06:23 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define MGMT_EV_NEW_CONFIG_OPTIONS	0x001f
 |