summaryrefslogtreecommitdiff
path: root/emulator/bthost.h
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2022-03-10 15:20:49 -0800
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2022-04-14 17:05:21 -0700
commitdc1b309901e5a1af4fdb5dc36c4af87ea9f7fae3 (patch)
tree3a9b779faa2cd05e0cd832b6c28bbc790d3095bc /emulator/bthost.h
parent1967b5311525846d94fca3a2a73f9efc743b0572 (diff)
downloadbluez-dc1b309901e5a1af4fdb5dc36c4af87ea9f7fae3.tar.gz
bthost: Add support for Create CIS
This introduces bthost_set_cig_params and bthost_create_cis.
Diffstat (limited to 'emulator/bthost.h')
-rw-r--r--emulator/bthost.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/emulator/bthost.h b/emulator/bthost.h
index ae5678009..fd177ac29 100644
--- a/emulator/bthost.h
+++ b/emulator/bthost.h
@@ -100,6 +100,12 @@ void bthost_set_pa_enable(struct bthost *bthost, uint8_t enable);
void bthost_create_big(struct bthost *bthost, uint8_t num_bis);
bool bthost_search_ext_adv_addr(struct bthost *bthost, const uint8_t *addr);
+void bthost_set_cig_params(struct bthost *bthost, uint8_t cig_id,
+ uint8_t cis_id);
+void bthost_create_cis(struct bthost *bthost, uint16_t cis_handle,
+ uint16_t acl_handle);
+
+
void bthost_set_scan_params(struct bthost *bthost, uint8_t scan_type,
uint8_t addr_type, uint8_t filter_policy);
void bthost_set_scan_enable(struct bthost *bthost, uint8_t enable);