zephyr/subsys/bluetooth/host/addr_internal.h
Emil Gydesen baad0c300f BluetootH: Host: add helper functions for resolved addresses
There is special handling done for resolved addresses to convert
them to "regular" addresses for the upper layers.
This commits adds two helper functions to check if they are
resolved, and if so, then properly copied.

Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
2023-01-12 13:31:12 +01:00

14 lines
336 B
C

/** @file
* @brief Internal header for Bluetooth address functions
*/
/*
* Copyright (c) 2023 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/bluetooth/addr.h>
void bt_addr_le_copy_resolved(bt_addr_le_t *dst, const bt_addr_le_t *src);
bool bt_addr_le_is_resolved(const bt_addr_le_t *addr);