/* Copyright (c) 2024 Nordic Semiconductor ASA * SPDX-License-Identifier: Apache-2.0 */ /** @brief Internal testing interfaces for Bluetooth * @file * @internal * * The interfaces in this file are internal and not stable. */ #ifndef ZEPHYR_INCLUDE_BLUETOOTH_TESTING_H_ #define ZEPHYR_INCLUDE_BLUETOOTH_TESTING_H_ #include /** @brief Hook for `acl_in_pool.destroy` * * Weak-function interface. The user can simply define this * function, and it will automatically become the event * listener. * * @kconfig_dep{CONFIG_BT_TESTING} */ void bt_testing_trace_event_acl_pool_destroy(struct net_buf *buf); #endif /* ZEPHYR_INCLUDE_BLUETOOTH_TESTING_H_ */