ref: 6c678e872d51247f5e47730218598209e96bdd0a
src/libs/mynewt-nimble/nimble/host/mesh/include/mesh/proxy.h
1 2 3 4 5 6 7 8 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 34 35 36 37 38 39 40 41 42 43 |
/** @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 * @{ */ #ifdef __cplusplus extern "C" { #endif /** * @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); #ifdef __cplusplus } #endif /** * @} */ #endif /* __BT_MESH_PROXY_H */ |