diff options
author | Andre Guedes | 2011-05-26 21:23:52 +0200 |
---|---|---|
committer | Gustavo F. Padovan | 2011-06-08 21:58:17 +0200 |
commit | eb9d91f5ae9c14583c49223e49f7e88f77b84749 (patch) | |
tree | 405173f41c8d3e2c28c32dd9ac1ebd472b1904de /include/net | |
parent | Bluetooth: Add Advertising Report Meta Event handler (diff) | |
download | kernel-qcow2-linux-eb9d91f5ae9c14583c49223e49f7e88f77b84749.tar.gz kernel-qcow2-linux-eb9d91f5ae9c14583c49223e49f7e88f77b84749.tar.xz kernel-qcow2-linux-eb9d91f5ae9c14583c49223e49f7e88f77b84749.zip |
Bluetooth: Clear advertising cache before scanning
The LE advertising cache should be cleared before performing a LE
scanning. This will force the cache to contain only fresh advertising
entries.
Signed-off-by: Andre Guedes <andre.guedes@openbossa.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/bluetooth/hci.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index 9317798fabcd..bd285c6a5509 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h @@ -710,6 +710,12 @@ struct hci_rp_le_read_buffer_size { __u8 le_max_pkt; } __packed; +#define HCI_OP_LE_SET_SCAN_ENABLE 0x200c +struct hci_cp_le_set_scan_enable { + __u8 enable; + __u8 filter_dup; +} __packed; + #define HCI_OP_LE_CREATE_CONN 0x200d struct hci_cp_le_create_conn { __le16 scan_interval; |