1 /*
2  * Copyright (c) 2017-2021 Nordic Semiconductor ASA
3  * Copyright (c) 2015-2016 Intel Corporation
4  *
5  * SPDX-License-Identifier: Apache-2.0
6  */
7 
8 void bt_le_adv_resume(void);
9 
10 struct bt_le_ext_adv *bt_le_adv_lookup_legacy(void);
11 
12 void bt_le_adv_delete_legacy(void);
13 int bt_le_adv_set_enable(struct bt_le_ext_adv *adv, bool enable);
14 
15 void bt_le_ext_adv_foreach(void (*func)(struct bt_le_ext_adv *adv, void *data),
16 			   void *data);
17 
18 int bt_le_adv_set_enable_ext(struct bt_le_ext_adv *adv,
19 			 bool enable,
20 			 const struct bt_le_ext_adv_start_param *param);
21 int bt_le_adv_set_enable_legacy(struct bt_le_ext_adv *adv, bool enable);
22 int bt_le_lim_adv_cancel_timeout(struct bt_le_ext_adv *adv);
23 void bt_adv_reset_adv_pool(void);
24