When local node poweroff and power on again, will receive iv update but within 96hours. When 96h after, due to cache, we can't process this beacon any more. Signed-off-by: Lingao Meng <menglingao@xiaomi.com>
19 lines
503 B
C
19 lines
503 B
C
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
void bt_mesh_beacon_enable(void);
|
|
void bt_mesh_beacon_disable(void);
|
|
void bt_mesh_beacon_cache_clear(struct bt_mesh_subnet *sub);
|
|
void bt_mesh_beacon_ivu_initiator(bool enable);
|
|
|
|
void bt_mesh_beacon_recv(struct net_buf_simple *buf);
|
|
|
|
void bt_mesh_beacon_create(struct bt_mesh_subnet *sub,
|
|
struct net_buf_simple *buf);
|
|
|
|
void bt_mesh_beacon_init(void);
|
|
void bt_mesh_beacon_update(struct bt_mesh_subnet *sub);
|