summaryrefslogtreecommitdiff
path: root/mesh/prv-beacon.h
blob: 1e69e7fdadf62960b5cddce90ccf933b0b0dbfb4 (plain)
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
/*
 *
 *  BlueZ - Bluetooth protocol stack for Linux
 *
 *  Copyright (C) 2023  Intel Corporation. All rights reserved.
 *
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 */

struct mesh_node;

#define PRV_BEACON_SRV_MODEL	SET_ID(SIG_VENDOR, 0x0008)
#define PRV_BEACON_CLI_MODEL	SET_ID(SIG_VENDOR, 0x0009)

/* Private Beacon opcodes */
#define OP_PRIVATE_BEACON_GET			0x8060
#define OP_PRIVATE_BEACON_SET			0x8061
#define OP_PRIVATE_BEACON_STATUS		0x8062
#define OP_PRIVATE_GATT_PROXY_GET		0x8063
#define OP_PRIVATE_GATT_PROXY_SET		0x8064
#define OP_PRIVATE_GATT_PROXY_STATUS		0x8065
#define OP_PRIVATE_NODE_ID_GET			0x8066
#define OP_PRIVATE_NODE_ID_SET			0x8067
#define OP_PRIVATE_NODE_ID_STATUS		0x8068

void prv_beacon_server_init(struct mesh_node *node, uint8_t ele_idx);