From: James Prestwood <prestwoj@gmail.com>
To: iwd@lists.linux.dev
Cc: James Prestwood <prestwoj@gmail.com>
Subject: [PATCH] monitor: add better info about the country code IE
Date: Wed, 13 Nov 2024 05:42:12 -0800 [thread overview]
Message-ID: <20241113134212.20698-1-prestwoj@gmail.com> (raw)
The 3rd byte of the country code was being printed as ASCII but this
byte isn't always a printable character. Instead we can check what
the value is and describe what it means from the spec.
---
monitor/nlmon.c | 25 ++++++++++++++++++++++++-
1 file changed, 24 insertions(+), 1 deletion(-)
diff --git a/monitor/nlmon.c b/monitor/nlmon.c
index ac594c3c..60adddc5 100644
--- a/monitor/nlmon.c
+++ b/monitor/nlmon.c
@@ -491,7 +491,30 @@ static void print_ie_country(unsigned int level, const char *label,
return;
}
- print_attr(level, "%s: %c%c%c", label, code[0], code[1], code[2]);
+ print_attr(level, "%s: %c%c", label, code[0], code[1]);
+
+ switch (code[2]) {
+ case ' ':
+ print_attr(level + 1,
+ "3rd octet: 0x%02x: All environments", code[2]);
+ break;
+ case 'O':
+ print_attr(level + 1,
+ "3rd octet: 0x%02x: Outdoor environments", code[2]);
+ break;
+ case 'I':
+ print_attr(level + 1,
+ "3rd octet: 0x%02x: Indoor environments", code[2]);
+ break;
+ case 'X':
+ print_attr(level + 1,
+ "3rd octet: 0x%02x: Non-country entity", code[2]);
+ break;
+ default:
+ print_attr(level + 1,
+ "3rd octet: 0x%02x: Annex E table", code[2]);
+ break;
+ }
while (i < size) {
if (code[i] > 200) {
--
2.34.1
next reply other threads:[~2024-11-13 13:42 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-13 13:42 James Prestwood [this message]
2024-11-13 17:40 ` [PATCH] monitor: add better info about the country code IE Denis Kenzior
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241113134212.20698-1-prestwoj@gmail.com \
--to=prestwoj@gmail.com \
--cc=iwd@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox