blob: 976c6256c87496f5eea0ca7959085c218a8a2c9d [file] [log] [blame]
developer1a173672023-12-21 14:49:33 +08001From 135e2f4368bba88d8823da63a134fdcc587fe698 Mon Sep 17 00:00:00 2001
developer092b55c2023-01-18 18:20:58 +08002From: Shayne Chen <shayne.chen@mediatek.com>
3Date: Tue, 20 Sep 2022 19:33:45 +0800
developer1a173672023-12-21 14:49:33 +08004Subject: [PATCH 02/54] mtk: hostapd: print sae groups by hostapd ctrl
developer092b55c2023-01-18 18:20:58 +08005
6---
7 hostapd/ctrl_iface.c | 13 +++++++++++++
8 1 file changed, 13 insertions(+)
9
10diff --git a/hostapd/ctrl_iface.c b/hostapd/ctrl_iface.c
developer1a173672023-12-21 14:49:33 +080011index 98d598ea9..c03e6f608 100644
developer092b55c2023-01-18 18:20:58 +080012--- a/hostapd/ctrl_iface.c
13+++ b/hostapd/ctrl_iface.c
developerbddc9db2023-09-11 13:34:36 +080014@@ -1364,6 +1364,19 @@ static int hostapd_ctrl_iface_get(struct hostapd_data *hapd, char *cmd,
developer092b55c2023-01-18 18:20:58 +080015 if (os_snprintf_error(buflen, res))
16 return -1;
17 return res;
18+ } else if (os_strcmp(cmd, "sae_group_capability") == 0) {
19+#ifdef CONFIG_SAE
20+ /* see sae_set_group() */
21+ res = os_snprintf(buf, buflen, "%s%s%s%s19 20 21",
22+ dh_groups_get(15) ? "15 ": "",
23+ dh_groups_get(16) ? "16 ": "",
24+ dh_groups_get(17) ? "17 ": "",
25+ dh_groups_get(18) ? "18 ": "");
26+
27+ if (os_snprintf_error(buflen, res))
28+ return -1;
29+ return res;
30+#endif /* CONFIG_SAE */
31 }
32
33 return -1;
34--
developerbddc9db2023-09-11 13:34:36 +0800352.18.0
developer092b55c2023-01-18 18:20:58 +080036