1 /*
2  * Copyright (c) 2023 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_SUBSYS_BLUETOOTH_MESH_STATISTIC_H_
8 #define ZEPHYR_SUBSYS_BLUETOOTH_MESH_STATISTIC_H_
9 
10 void bt_mesh_stat_planned_count(struct bt_mesh_adv_ctx *ctx);
11 void bt_mesh_stat_succeeded_count(struct bt_mesh_adv_ctx *ctx);
12 void bt_mesh_stat_rx(enum bt_mesh_net_if net_if);
13 
14 #endif /* ZEPHYR_SUBSYS_BLUETOOTH_MESH_STATISTIC_H_ */
15