summaryrefslogtreecommitdiff
path: root/emulator/hciemu.h
diff options
context:
space:
mode:
authorTedd Ho-Jeong An <tedd.an@intel.com>2021-10-25 13:31:17 -0700
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2021-10-25 13:38:35 -0700
commitf669f9bd1a64d7ef28a1cf98d41647200db74e92 (patch)
treef195d5b0c6cb8bcf85de0c25502547260a1d2f0c /emulator/hciemu.h
parent0626b79214ed72806283adfa70163e4a8e97eff5 (diff)
downloadbluez-f669f9bd1a64d7ef28a1cf98d41647200db74e92.tar.gz
emulator: Add support to config the accept and resolve list
This patch adds interfaces to config the accept list and resolve list in the btdev.
Diffstat (limited to 'emulator/hciemu.h')
-rw-r--r--emulator/hciemu.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/emulator/hciemu.h b/emulator/hciemu.h
index 338fa844d..2a49d8bad 100644
--- a/emulator/hciemu.h
+++ b/emulator/hciemu.h
@@ -61,6 +61,10 @@ uint8_t hciemu_get_central_le_scan_enable(struct hciemu *hciemu);
void hciemu_set_central_le_states(struct hciemu *hciemu,
const uint8_t *le_states);
+void hciemu_set_central_le_al_len(struct hciemu *hciemu, uint8_t len);
+
+void hciemu_set_central_le_rl_len(struct hciemu *hciemu, uint8_t len);
+
typedef void (*hciemu_command_func_t)(uint16_t opcode, const void *data,
uint8_t len, void *user_data);