From ae4a3a6f67e2c0bc57abdfb3259c5df12f9e8345 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Thu, 21 Jul 2022 13:15:22 +0300 Subject: [PATCH] DPP: Add DPP-CONF-REQ-RX event for Controller This gets the Controller (DPP-over-TCP) sequence closer to the one used with Public Action frames and makes it easier for upper layer components to share the same design for tracking operation status. Signed-off-by: Jouni Malinen --- src/common/dpp_tcp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/dpp_tcp.c b/src/common/dpp_tcp.c index 036991850..5cd732907 100644 --- a/src/common/dpp_tcp.c +++ b/src/common/dpp_tcp.c @@ -1348,6 +1348,8 @@ static int dpp_controller_rx_gas_req(struct dpp_connection *conn, const u8 *msg, return -1; } + wpa_msg(conn->msg_ctx, MSG_INFO, DPP_EVENT_CONF_REQ_RX); + pos = msg; end = msg + len;