aboutsummaryrefslogtreecommitdiffstats
path: root/epan/frequency-utils.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2008-03-03 20:17:53 +0000
committerGerald Combs <gerald@wireshark.org>2008-03-03 20:17:53 +0000
commit8e0bae388fdc165e56de8db604866d374c8f91a3 (patch)
treefae9c33d910b9fb5d6afbbaa25128b39f6ebb2fa /epan/frequency-utils.c
parent2c4c5a086b69fd2264ce0dc99ed3000432373fac (diff)
Cite the source of frequency allocation information.
svn path=/trunk/; revision=24538
Diffstat (limited to 'epan/frequency-utils.c')
-rw-r--r--epan/frequency-utils.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/epan/frequency-utils.c b/epan/frequency-utils.c
index 1180835a37..1c8ebea4a3 100644
--- a/epan/frequency-utils.c
+++ b/epan/frequency-utils.c
@@ -39,11 +39,12 @@ typedef struct freq_cvt_s {
#define FREQ_STEP 5 /* MHz. This seems to be consistent, thankfully */
+/* From "802.11 Wireless Networks: The Definitive Guide", 2nd Ed. by Matthew Gast */
static freq_cvt_t freq_cvt[] = {
- { 2412, 2472, 1, TRUE },
- { 2484, 2484, 14, TRUE },
- { 5000, 5995, 0, FALSE },
- { 4920, 4995, 240, FALSE }
+ { 2412, 2472, 1, TRUE }, /* Table 12-1, p 257 */
+ { 2484, 2484, 14, TRUE }, /* Table 12-1, p 257 */
+ { 5000, 5995, 0, FALSE }, /* Table 13-1, p 289 */
+ { 4920, 4995, 240, FALSE } /* Table 13-1, p 289 */
};
#define NUM_FREQ_CVT (sizeof(freq_cvt) / sizeof(freq_cvt_t))