Branch: refs/heads/master Home: https://github.com/bluez/bluez Commit: da85360a956f5805f680ac75b45b9e1ae4abcf54 https://github.com/bluez/bluez/commit/da85360a956f5805f680ac75b45b9e1ae4abcf54 Author: Iulia Tanasescu <iulia.tanasescu@xxxxxxx> Date: 2023-07-10 (Mon, 10 Jul 2023) Changed paths: M btio/btio.c M btio/btio.h Log Message: ----------- btio: Add options for binding iso broadcast address This adds additional btio options, to allow binding a socket to a broadcaster address. Commit: 8a8f8c143b18519780c87d4689cf3840b8aea243 https://github.com/bluez/bluez/commit/8a8f8c143b18519780c87d4689cf3840b8aea243 Author: Iulia Tanasescu <iulia.tanasescu@xxxxxxx> Date: 2023-07-10 (Mon, 10 Jul 2023) Changed paths: M Makefile.am M profiles/audio/bass.c M src/shared/bass.c M src/shared/bass.h M unit/test-bass.c Log Message: ----------- shared/bass: Introduce Add Source opcode handler This implements the Control Point handler for the Add Source operation. Commit: c96eb3ea5537b3b144d47a215c3828ffb7cd333d https://github.com/bluez/bluez/commit/c96eb3ea5537b3b144d47a215c3828ffb7cd333d Author: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> Date: 2023-07-10 (Mon, 10 Jul 2023) Changed paths: A tools/test-runner.rst Log Message: ----------- test-runner: Add documentation This adds test-runner.rst documentation with a few examples of how it can be used to run kernel testers like mgmt-tester and also bluetoothd, audio and Bluetooth controller plugged in the host system which is quite useful when trying experimental features such LE Audio, etc. Commit: b9e7ca94d458a4f5e13565d3486b1d84784ef169 https://github.com/bluez/bluez/commit/b9e7ca94d458a4f5e13565d3486b1d84784ef169 Author: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> Date: 2023-07-10 (Mon, 10 Jul 2023) Changed paths: M tools/mgmt-tester.c Log Message: ----------- mgmt-tester: Fix tests that consider 31 bytes the max adv lenght This fixes a couple of tests that consider 31 bytes the max advertising length since in case of extended advertising that number is actually 251. Commit: 2cb07aa669e58cc8b80700088de5dd71a877dd42 https://github.com/bluez/bluez/commit/2cb07aa669e58cc8b80700088de5dd71a877dd42 Author: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> Date: 2023-07-10 (Mon, 10 Jul 2023) Changed paths: M src/shared/ad.c M src/shared/ad.h Log Message: ----------- shared/ad: Fix hardcoding maximum data length Instances shall not assume BT_AD_MAX_DATA_LEN is always the maximum length as they could be used with EA which supports bigger length. Commit: 153aaeda2b21012501b22b73c50412edf458ee87 https://github.com/bluez/bluez/commit/153aaeda2b21012501b22b73c50412edf458ee87 Author: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> Date: 2023-07-10 (Mon, 10 Jul 2023) Changed paths: M src/advertising.c Log Message: ----------- advertising: Use bt_ad_set_max_len This uses bt_ad_set_max_len to properly set the maximum data length of the bt_ad instances based on what the kernel returns. Commit: 4578395b5370716b7fecd60d109fc2c01932c891 https://github.com/bluez/bluez/commit/4578395b5370716b7fecd60d109fc2c01932c891 Author: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> Date: 2023-07-10 (Mon, 10 Jul 2023) Changed paths: M client/advertising.c Log Message: ----------- client/advetising: Allow use of EA data length The code was supporting a maximum of 25 bytes (31 - 6) to be entered as advertising data, but in case of EA is used that allows up to 245 bytes (251 - 6) to be entered. Commit: 838e1578072900d1f98dfb31cc538940d2fad876 https://github.com/bluez/bluez/commit/838e1578072900d1f98dfb31cc538940d2fad876 Author: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> Date: 2023-07-10 (Mon, 10 Jul 2023) Changed paths: M src/advertising.c Log Message: ----------- advertising: Fix build warning This fixes the following warning: src/advertising.c:942:2: warning: Null pointer passed to 2nd parameter expecting 'nonnull' [core.NonNullParamChecker] memcpy(cp->data + adv_data_len, scan_rsp, scan_rsp_len); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Compare: https://github.com/bluez/bluez/compare/b74146068892...838e15780729