2017-06-16 12:30:54 +03:00
|
|
|
/* Bluetooth Mesh */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2017 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2021-05-26 20:39:13 -07:00
|
|
|
#ifndef ZEPHYR_SUBSYS_BLUETOOTH_MESH_PROXY_H_
|
|
|
|
#define ZEPHYR_SUBSYS_BLUETOOTH_MESH_PROXY_H_
|
|
|
|
|
|
|
|
#include <bluetooth/gatt.h>
|
|
|
|
|
|
|
|
int bt_mesh_pb_gatt_send(struct bt_conn *conn, struct net_buf_simple *buf,
|
|
|
|
bt_gatt_complete_func_t end, void *user_data);
|
|
|
|
|
2017-06-16 12:30:54 +03:00
|
|
|
#define BT_MESH_PROXY_NET_PDU 0x00
|
|
|
|
#define BT_MESH_PROXY_BEACON 0x01
|
|
|
|
#define BT_MESH_PROXY_CONFIG 0x02
|
|
|
|
#define BT_MESH_PROXY_PROV 0x03
|
|
|
|
|
|
|
|
int bt_mesh_proxy_prov_enable(void);
|
2019-03-27 14:53:36 +01:00
|
|
|
int bt_mesh_proxy_prov_disable(bool disconnect);
|
2017-06-16 12:30:54 +03:00
|
|
|
|
|
|
|
int bt_mesh_proxy_gatt_enable(void);
|
|
|
|
int bt_mesh_proxy_gatt_disable(void);
|
2017-11-29 12:06:38 +02:00
|
|
|
void bt_mesh_proxy_gatt_disconnect(void);
|
2017-06-16 12:30:54 +03:00
|
|
|
|
|
|
|
void bt_mesh_proxy_beacon_send(struct bt_mesh_subnet *sub);
|
|
|
|
|
|
|
|
struct net_buf_simple *bt_mesh_proxy_get_buf(void);
|
|
|
|
|
2020-11-13 16:21:32 +01:00
|
|
|
int bt_mesh_proxy_adv_start(void);
|
2017-06-16 12:30:54 +03:00
|
|
|
|
2017-12-05 09:35:57 +02:00
|
|
|
void bt_mesh_proxy_identity_start(struct bt_mesh_subnet *sub);
|
|
|
|
void bt_mesh_proxy_identity_stop(struct bt_mesh_subnet *sub);
|
|
|
|
|
2021-05-26 20:39:13 -07:00
|
|
|
bool bt_mesh_proxy_relay(struct net_buf *buf, uint16_t dst);
|
2020-05-27 11:26:57 -05:00
|
|
|
void bt_mesh_proxy_addr_add(struct net_buf_simple *buf, uint16_t addr);
|
2017-06-16 12:30:54 +03:00
|
|
|
|
|
|
|
int bt_mesh_proxy_init(void);
|
2021-05-26 20:39:13 -07:00
|
|
|
|
|
|
|
#endif /* ZEPHYR_SUBSYS_BLUETOOTH_MESH_PROXY_H_ */
|