diff options
author | Gerald Combs <gerald@wireshark.org> | 2008-03-03 20:17:53 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2008-03-03 20:17:53 +0000 |
commit | 8e0bae388fdc165e56de8db604866d374c8f91a3 (patch) | |
tree | fae9c33d910b9fb5d6afbbaa25128b39f6ebb2fa /epan/frequency-utils.c | |
parent | 2c4c5a086b69fd2264ce0dc99ed3000432373fac (diff) | |
download | wireshark-8e0bae388fdc165e56de8db604866d374c8f91a3.tar.gz wireshark-8e0bae388fdc165e56de8db604866d374c8f91a3.tar.bz2 wireshark-8e0bae388fdc165e56de8db604866d374c8f91a3.zip |
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.c | 9 |
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)) |