diff mbox series

[PATCHv3,3/3] DPP: expose own and peer bootstrap info ids on dpp auth

Message ID 20210511105618.72497-3-kazikcz@gmail.com
State Accepted
Headers show
Series [PATCHv2,1/3] DPP: move DPP_EVENT_AUTH_SUCCESS to a helper | expand

Commit Message

MichaƂ Kazior May 11, 2021, 10:56 a.m. UTC
From: Michal Kazior <michal@plume.com>

The system may be interested in knowing which
bootstrap information entries are being exercised.

This could be used for statistics or completion
signaling to upper application layer outside of
hostapd, along with the public key hash.

Signed-off-by: Michal Kazior <michal@plume.com>
---

Notes:
    v2:
     - added to allow bootstrap -- pk hash mapping

 src/common/dpp.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/src/common/dpp.c b/src/common/dpp.c
index 56c442d6d..1e5acb6b5 100644
--- a/src/common/dpp.c
+++ b/src/common/dpp.c
@@ -4402,8 +4402,11 @@  void dpp_notify_auth_success(struct dpp_authentication *auth, int initiator)
 	os_memset(hex, 0, sizeof(hex));
 	dpp_get_pubkey_hash(auth->peer_protocol_key, hex, sizeof(hex));
 
-	wpa_msg(auth->msg_ctx, MSG_INFO, DPP_EVENT_AUTH_SUCCESS "init=%d pkhash=%s",
-		initiator, hex);
+	wpa_msg(auth->msg_ctx, MSG_INFO, DPP_EVENT_AUTH_SUCCESS
+		"init=%d pkhash=%s own=%d peer=%d",
+		initiator, hex,
+		auth->own_bi ? auth->own_bi->id : -1,
+		auth->peer_bi ? auth->peer_bi->id : -1);
 }