summaryrefslogtreecommitdiff
path: root/monitor/bt.h
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2014-12-13 21:36:22 +0100
committerMarcel Holtmann <marcel@holtmann.org>2014-12-13 21:38:06 +0100
commit1708f88d126b240e16716355b3b20524c5966112 (patch)
tree44a2999abca2b8b43e6512d2ccb3011edf35db4e /monitor/bt.h
parented331a44a333cc7e90d588832048f38fe1d9fedd (diff)
downloadbluez-1708f88d126b240e16716355b3b20524c5966112.tar.gz
monitor: Add support for resolving list enable and address timeout commands
Diffstat (limited to 'monitor/bt.h')
-rw-r--r--monitor/bt.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/monitor/bt.h b/monitor/bt.h
index fac93a051..3b7071a80 100644
--- a/monitor/bt.h
+++ b/monitor/bt.h
@@ -1913,6 +1913,16 @@ struct bt_hci_rsp_le_read_resolv_list_size {
uint8_t size;
} __attribute__ ((packed));
+#define BT_HCI_CMD_LE_SET_RESOLV_ENABLE 0x202d
+struct bt_hci_cmd_le_set_resolv_enable {
+ uint8_t enable;
+} __attribute__ ((packed));
+
+#define BT_HCI_CMD_LE_SET_RESOLV_TIMEOUT 0x202e
+struct bt_hci_cmd_le_set_resolv_timeout {
+ uint16_t timeout;
+} __attribute__ ((packed));
+
#define BT_HCI_CMD_LE_READ_MAX_DATA_LENGTH 0x202f
struct bt_hci_rsp_le_read_max_data_length {
uint8_t status;