Skip to content

Commit 4a02cbb

Browse files
committed
Bluetooth: conn: Make bt_conn_lookup_addr_br() public
Move the declaration of the function `bt_conn_lookup_addr_br()` from `conn_internal.h` to `conn.h`. Signed-off-by: Lyle Zhu <lyle.zhu@nxp.com>
1 parent 7431e52 commit 4a02cbb

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

doc/releases/release-notes-4.2.rst

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ New APIs and options
9090

9191
* :c:func:`bt_le_get_local_features`
9292
* :c:func:`bt_le_bond_exists`
93+
* :c:func:`bt_conn_lookup_addr_br`
9394

9495
* Display
9596

include/zephyr/bluetooth/conn.h

+13
Original file line numberDiff line numberDiff line change
@@ -2618,6 +2618,19 @@ struct bt_br_conn_param {
26182618
struct bt_conn *bt_conn_create_br(const bt_addr_t *peer,
26192619
const struct bt_br_conn_param *param);
26202620

2621+
/** @brief Look up an existing BR connection by address.
2622+
*
2623+
* Look up an existing BR connection based on the remote address.
2624+
*
2625+
* The caller gets a new reference to the connection object which must be
2626+
* released with bt_conn_unref() once done using the object.
2627+
*
2628+
* @param peer Remote address.
2629+
*
2630+
* @return Connection object or NULL if not found.
2631+
*/
2632+
struct bt_conn *bt_conn_lookup_addr_br(const bt_addr_t *peer);
2633+
26212634
#ifdef __cplusplus
26222635
}
26232636
#endif

subsys/bluetooth/host/conn.c

+5
Original file line numberDiff line numberDiff line change
@@ -2390,6 +2390,11 @@ struct bt_conn *bt_conn_lookup_addr_br(const bt_addr_t *peer)
23902390
{
23912391
int i;
23922392

2393+
CHECKIF(peer == NULL) {
2394+
LOG_WRN("Invalid peer address");
2395+
return NULL;
2396+
}
2397+
23932398
for (i = 0; i < ARRAY_SIZE(acl_conns); i++) {
23942399
struct bt_conn *conn = bt_conn_ref(&acl_conns[i]);
23952400

subsys/bluetooth/host/conn_internal.h

-3
Original file line numberDiff line numberDiff line change
@@ -423,9 +423,6 @@ void bt_sco_cleanup(struct bt_conn *sco_conn);
423423
/* Look up an existing sco connection by BT address */
424424
struct bt_conn *bt_conn_lookup_addr_sco(const bt_addr_t *peer);
425425

426-
/* Look up an existing connection by BT address */
427-
struct bt_conn *bt_conn_lookup_addr_br(const bt_addr_t *peer);
428-
429426
void bt_conn_disconnect_all(uint8_t id);
430427

431428
/* Allocate new connection object */

0 commit comments

Comments
 (0)