From d76f65e8a10992532576b5e74b6a62165cbc361f Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Thu, 23 Apr 2020 23:17:25 +0200 Subject: [PATCH] mesh: select auth method in provisoner role in mesh_pts --- test/mesh/mesh_pts.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/mesh/mesh_pts.c b/test/mesh/mesh_pts.c index c65fa635a..4ee57e747 100644 --- a/test/mesh/mesh_pts.c +++ b/test/mesh/mesh_pts.c @@ -166,6 +166,12 @@ static void mesh_provisioning_message_handler (uint8_t packet_type, uint16_t cha case MESH_SUBEVENT_PB_TRANSPORT_LINK_CLOSED: printf("Provisioner link close"); break; +#ifdef ENABLE_MESH_PROVISIONER + case MESH_SUBEVENT_PB_PROV_CAPABILITIES: + printf("Provisioner, select authentication method\n"); + provisioning_provisioner_select_authentication_method(1, 0, 0, 0, 0, 0); + break; +#endif case MESH_SUBEVENT_ATTENTION_TIMER: printf("Attention Timer: %u\n", mesh_subevent_attention_timer_get_attention_time(packet)); break;