From e28d4a58bf8e113b416649ca06aa302a748bddf2 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Tue, 5 Jan 2021 14:40:42 +0000 Subject: iwinfo: add support for 802.11ad and GCMP Signed-off-by: Daniel Golle --- iwinfo.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/iwinfo.c b/iwinfo.c index c723fbc..4133dc4 100644 --- a/iwinfo.c +++ b/iwinfo.c @@ -199,6 +199,9 @@ rpc_iwinfo_add_encryption(const char *name, struct iwinfo_crypto_entry *e) if (ciph & IWINFO_CIPHER_CCMP) blobmsg_add_string(&buf, NULL, "ccmp"); + if (ciph & IWINFO_CIPHER_GCMP) + blobmsg_add_string(&buf, NULL, "gcmp"); + if (ciph & IWINFO_CIPHER_WRAP) blobmsg_add_string(&buf, NULL, "wrap"); @@ -271,6 +274,9 @@ rpc_iwinfo_call_hwmodes(const char *name) { c = blobmsg_open_array(&buf, name); + if (modes & IWINFO_80211_AD) + blobmsg_add_string(&buf, NULL, "ad"); + if (modes & IWINFO_80211_AC) blobmsg_add_string(&buf, NULL, "ac"); -- cgit v1.2.1