27 lines
1.0 KiB
C
27 lines
1.0 KiB
C
/*
|
|
* Copyright (c) 2021 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
struct op_agg_ctx {
|
|
/** Context is initialized. */
|
|
bool initialized;
|
|
/** NetKey Index of the subnet to send the message on. */
|
|
uint16_t net_idx;
|
|
/** AppKey Index to encrypt the message with. */
|
|
uint16_t app_idx;
|
|
/** Remote element address. */
|
|
uint16_t addr;
|
|
/** Aggregated message buffer. */
|
|
struct net_buf_simple *sdu;
|
|
};
|
|
|
|
int bt_mesh_op_agg_encode_msg(struct net_buf_simple *msg, struct net_buf_simple *buf);
|
|
int bt_mesh_op_agg_decode_msg(struct net_buf_simple *msg, struct net_buf_simple *buf);
|
|
int bt_mesh_op_agg_cli_send(const struct bt_mesh_model *model, struct net_buf_simple *msg);
|
|
int bt_mesh_op_agg_cli_accept(struct bt_mesh_msg_ctx *ctx, struct net_buf_simple *buf);
|
|
int bt_mesh_op_agg_srv_send(const struct bt_mesh_model *model, struct net_buf_simple *msg);
|
|
int bt_mesh_op_agg_srv_accept(struct bt_mesh_msg_ctx *ctx, struct net_buf_simple *buf);
|
|
bool bt_mesh_op_agg_is_op_agg_msg(struct net_buf_simple *buf);
|