Line data Source code
1 1 : /* Copyright (c) 2024 Nordic Semiconductor ASA
2 : * SPDX-License-Identifier: Apache-2.0
3 : */
4 :
5 : /** @brief Internal testing interfaces for Bluetooth
6 : * @file
7 : * @internal
8 : *
9 : * The interfaces in this file are internal and not stable.
10 : */
11 :
12 : #ifndef ZEPHYR_INCLUDE_BLUETOOTH_TESTING_H_
13 : #define ZEPHYR_INCLUDE_BLUETOOTH_TESTING_H_
14 :
15 : #include <zephyr/net_buf.h>
16 :
17 : /** @brief Hook for `acl_in_pool.destroy`
18 : *
19 : * Weak-function interface. The user can simply define this
20 : * function, and it will automatically become the event
21 : * listener.
22 : *
23 : * @kconfig_dep{CONFIG_BT_TESTING}
24 : */
25 1 : void bt_testing_trace_event_acl_pool_destroy(struct net_buf *buf);
26 :
27 : #endif /* ZEPHYR_INCLUDE_BLUETOOTH_TESTING_H_ */
|