| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /* Bluetooth Mesh */
- /*
- * SPDX-FileCopyrightText: 2017 Intel Corporation
- * SPDX-FileContributor: 2020-2021 Espressif Systems (Shanghai) CO LTD
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #ifndef _LOCAL_H_
- #define _LOCAL_H_
- #include "mesh/types.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- int bt_mesh_model_subscribe_group_addr(uint16_t elem_addr, uint16_t mod_id,
- uint16_t cid, uint16_t group_addr);
- int bt_mesh_model_unsubscribe_group_addr(uint16_t elem_addr, uint16_t cid,
- uint16_t mod_id, uint16_t group_addr);
- const uint8_t *bt_mesh_node_get_local_net_key(uint16_t net_idx);
- const uint8_t *bt_mesh_node_get_local_app_key(uint16_t app_idx);
- int bt_mesh_node_local_net_key_add(uint16_t net_idx, const uint8_t net_key[16]);
- int bt_mesh_node_local_app_key_add(uint16_t net_idx, uint16_t app_idx,
- const uint8_t app_key[16]);
- int bt_mesh_node_bind_app_key_to_model(uint16_t elem_addr, uint16_t mod_id,
- uint16_t cid, uint16_t app_idx);
- #if CONFIG_BLE_MESH_DF_SRV
- int bt_mesh_enable_directed_forwarding(uint16_t net_idx, bool directed_forwarding,
- bool directed_forwarding_relay);
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif /* _LOCAL_H_ */
|