summaryrefslogtreecommitdiff
path: root/emulator/bthost.c
diff options
context:
space:
mode:
authorIulia Tanasescu <iulia.tanasescu@nxp.com>2023-04-19 16:43:54 +0300
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2023-04-19 13:46:00 -0700
commitb56479f4f5a350391af06cae331bd1d78651da58 (patch)
tree2473acd4f63367bf86ac7b4dcc0a0ad9e1722ea9 /emulator/bthost.c
parentce1eb5dd0a03db1f6c123f14e4f837d115fd08d7 (diff)
downloadbluez-b56479f4f5a350391af06cae331bd1d78651da58.tar.gz
tools/iso-tester: Add Broadcast tests for encrypted BIG
This adds the following tests for encrypted broadcast: ISO Broadcaster Encrypted - Success ISO Broadcaster Receiver Encrypted - Success
Diffstat (limited to 'emulator/bthost.c')
-rw-r--r--emulator/bthost.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/emulator/bthost.c b/emulator/bthost.c
index 8cdfa0c06..3179bb3d2 100644
--- a/emulator/bthost.c
+++ b/emulator/bthost.c
@@ -3137,7 +3137,8 @@ void bthost_set_pa_enable(struct bthost *bthost, uint8_t enable)
send_command(bthost, BT_HCI_CMD_LE_SET_PA_ENABLE, &cp, sizeof(cp));
}
-void bthost_create_big(struct bthost *bthost, uint8_t num_bis)
+void bthost_create_big(struct bthost *bthost, uint8_t num_bis,
+ uint8_t enc, const uint8_t *bcode)
{
struct bt_hci_cmd_le_create_big cp;
@@ -3150,6 +3151,8 @@ void bthost_create_big(struct bthost *bthost, uint8_t num_bis)
cp.bis.latency = cpu_to_le16(10);
cp.bis.rtn = 0x02;
cp.bis.phy = 0x02;
+ cp.bis.encryption = enc;
+ memcpy(cp.bis.bcode, bcode, sizeof(cp.bis.bcode));
send_command(bthost, BT_HCI_CMD_LE_CREATE_BIG, &cp, sizeof(cp));
}