As the number of mesh APIs grows it becomes a bit cumbersome to have everything in a single header file. Split the mesh.h header file into multiple files in a new mesh subdirectory, and include the new headers from the old one to retain backwards compatibility and simplicity for apps (they only need to include <bluetooth/mesh.h>). Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
36 lines
683 B
C
36 lines
683 B
C
/** @file
|
|
* @brief Bluetooth Mesh Proxy APIs.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2017 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef __BT_MESH_PROXY_H
|
|
#define __BT_MESH_PROXY_H
|
|
|
|
/**
|
|
* @brief Bluetooth Mesh Proxy
|
|
* @defgroup bt_mesh_proxy Bluetooth Mesh Proxy
|
|
* @ingroup bt_mesh
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* @brief Enable advertising with Node Identity.
|
|
*
|
|
* This API requires that GATT Proxy support has been enabled. Once called
|
|
* each subnet will start advertising using Node Identity for the next
|
|
* 60 seconds.
|
|
*
|
|
* @return 0 on success, or (negative) error code on failure.
|
|
*/
|
|
int bt_mesh_proxy_identity_enable(void);
|
|
|
|
/**
|
|
* @}
|
|
*/
|
|
|
|
#endif /* __BT_MESH_PROXY_H */
|