mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-18 05:42:49 +00:00
mesh: pre-sort proxy configuration handling code in mesh.c
This commit is contained in:
parent
becd79c1a0
commit
d00dae02bc
@ -822,19 +822,27 @@ static void virtual_address_complete(void * arg){
|
|||||||
static void key_derived(void * arg){
|
static void key_derived(void * arg){
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mesh_proxy_packet_handler_beacon(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
|
// Mesh Proxy Configuration
|
||||||
switch (packet_type){
|
|
||||||
case MESH_PROXY_DATA_PACKET:
|
typedef enum {
|
||||||
printf("Received beacon\n");
|
MESH_PROXY_CONFIGURATION_MESSAGE_OPCODE_SET_FILTER_TYPE = 0,
|
||||||
printf_hexdump(packet, size);
|
MESH_PROXY_CONFIGURATION_MESSAGE_OPCODE_ADD_ADDRESSES,
|
||||||
break;
|
MESH_PROXY_CONFIGURATION_MESSAGE_OPCODE_REMOVE_ADDRESSES,
|
||||||
default:
|
MESH_PROXY_CONFIGURATION_MESSAGE_OPCODE_FILTER_STATUS
|
||||||
break;
|
} mesh_proxy_configuration_message_opcode_t;
|
||||||
}
|
|
||||||
}
|
typedef enum {
|
||||||
|
MESH_PROXY_CONFIGURATION_FILTER_TYPE_SET_WHITE_LIST = 0,
|
||||||
|
MESH_PROXY_CONFIGURATION_FILTER_TYPE_BLACK_LIST
|
||||||
|
} mesh_proxy_configuration_filter_type_t;
|
||||||
|
|
||||||
static mesh_network_pdu_t * encrypted_proxy_configuration_ready_to_send;
|
static mesh_network_pdu_t * encrypted_proxy_configuration_ready_to_send;
|
||||||
|
|
||||||
|
// Used to answer configuration request
|
||||||
|
static uint16_t proxy_configuration_filter_list_len;
|
||||||
|
static mesh_proxy_configuration_filter_type_t proxy_configuration_filter_type;
|
||||||
|
static uint16_t primary_element_address;
|
||||||
|
|
||||||
static void request_can_send_now_proxy_configuration_callback_handler(mesh_network_pdu_t * network_pdu){
|
static void request_can_send_now_proxy_configuration_callback_handler(mesh_network_pdu_t * network_pdu){
|
||||||
encrypted_proxy_configuration_ready_to_send = network_pdu;
|
encrypted_proxy_configuration_ready_to_send = network_pdu;
|
||||||
gatt_bearer_request_can_send_now_for_mesh_proxy_configuration();
|
gatt_bearer_request_can_send_now_for_mesh_proxy_configuration();
|
||||||
@ -870,24 +878,7 @@ static void packet_handler_for_mesh_proxy_configuration(uint8_t packet_type, uin
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef enum {
|
static void proxy_configuration_message_handler(mesh_network_callback_type_t callback_type, mesh_network_pdu_t * received_network_pdu){
|
||||||
MESH_PROXY_CONFIGURATION_MESSAGE_OPCODE_SET_FILTER_TYPE = 0,
|
|
||||||
MESH_PROXY_CONFIGURATION_MESSAGE_OPCODE_ADD_ADDRESSES,
|
|
||||||
MESH_PROXY_CONFIGURATION_MESSAGE_OPCODE_REMOVE_ADDRESSES,
|
|
||||||
MESH_PROXY_CONFIGURATION_MESSAGE_OPCODE_FILTER_STATUS
|
|
||||||
} mesh_proxy_configuration_message_opcode_t;
|
|
||||||
|
|
||||||
typedef enum {
|
|
||||||
MESH_PROXY_CONFIGURATION_FILTER_TYPE_SET_WHITE_LIST = 0,
|
|
||||||
MESH_PROXY_CONFIGURATION_FILTER_TYPE_BLACK_LIST
|
|
||||||
} mesh_proxy_configuration_filter_type_t;
|
|
||||||
|
|
||||||
// Used to answer configuration request
|
|
||||||
static uint16_t proxy_configuration_filter_list_len;
|
|
||||||
static mesh_proxy_configuration_filter_type_t proxy_configuration_filter_type;
|
|
||||||
static uint16_t primary_element_address;
|
|
||||||
|
|
||||||
void proxy_configuration_message_handler(mesh_network_callback_type_t callback_type, mesh_network_pdu_t * received_network_pdu){
|
|
||||||
mesh_proxy_configuration_message_opcode_t opcode;
|
mesh_proxy_configuration_message_opcode_t opcode;
|
||||||
uint8_t data[4];
|
uint8_t data[4];
|
||||||
mesh_network_pdu_t * network_pdu;
|
mesh_network_pdu_t * network_pdu;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user