1
2
3
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* ... */
#ifndef _RPL_H_
#define _RPL_H_
#include "net.h"
#ifdef __cplusplus
extern "C" {
#endif
void bt_mesh_update_rpl(struct bt_mesh_rpl *rpl, struct bt_mesh_net_rx *rx);
bool bt_mesh_rpl_check(struct bt_mesh_net_rx *rx, struct bt_mesh_rpl **match);
void bt_mesh_rpl_update(void);
void bt_mesh_rpl_reset_single(uint16_t src, bool erase);
void bt_mesh_rpl_reset(bool erase);
#ifdef __cplusplus
}{...}
#endif
/* ... */
#endif