aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee80211-radiotap-defs.h
AgeCommit message (Collapse)AuthorFilesLines
2017-03-06RadioTap TimeStamp field added.Boazi1-2/+17
Timestamp was added according to radiotap spec. Original changes provided by Johannes Berg from Intel Change-Id: I72cb315626787d85b2bfb676c8ea7c73130f5a69 Reviewed-on: https://code.wireshark.org/review/20282 Reviewed-by: Michael Mann <mmann78@netscape.net> Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
2015-06-22Provide PHY type and band information in the 802.11 pseudo-header.Guy Harris1-8/+30
Provide that information so that the "802.11 radio information" protocol can indicate whether a packet was 802.11 legacy/11b/11a/11g/11n/11ac, and possibly whether it's 2.4 GHz or 5 GHz 11n. (Sometimes the center frequency might not be supplied, so the band information can be useful.) Also, provide some 11ac information, now that we can distinguish between 11n and 11ac. Don't calculate the data rate from the MCS index unless it's 11n; we don't yet have code to calculate it for 11ac. For radiotap, only provide guard interval information for 11n and 11ac, not for earlier standards. Handle the 11ac flag in the Peek remote protocol. For Peek tagged files, the "extension flags" are 11n/11ac flags, so we don't have to check for the "MCS used" bit in order to decide that the packet is 11n or 11ac or to decide whether to provide the "bandwidth" or "short GI" information. Change-Id: Ia8a1a9b11a35243ed84eb4e72c384cc77512b098 Reviewed-on: https://code.wireshark.org/review/9032 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2015-06-20Support the "number of extension spatial streams" information.Guy Harris1-2/+4
Change-Id: If69088aac0848d6ec8d239e3a9acc140ad376d6f Reviewed-on: https://code.wireshark.org/review/8990 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2015-06-18The STBC subfield of the radiotap MCS field is a count, not a flag.Guy Harris1-1/+5
It's a 2-bit field that is the "number of STBC streams", according to the radiotap Web site item for the MCS field: http://www.radiotap.org/defined-fields/MCS Correctly label both the FCS type and STBC stream count fields. Change-Id: Ic49f6faec3335096c6bb8ce96ce0dec2f9342a37 Reviewed-on: https://code.wireshark.org/review/8971 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-10-13whitespace fixes; mostly: remove trailing blanksBill Meier1-1/+1
svn path=/trunk/; revision=52591
2012-09-18From Daniel via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7716Alexis La Goutte1-2/+52
Adding VHT Radiotap fields support Parsing and UI representation for recently adopted VHT Radiotap fields for 802.11ac specification http://www.radiotap.org/defined-fields/VHT From me : * Make checkAPIs happy * Fix wrong last argument for some proto_tree_add_item * Use proto_tree_add_item when it is possible svn path=/trunk/; revision=44985
2012-08-08Enhance radiotap dissectorAlexis La Goutte1-0/+4
* Display unused/not defined present flags * Add expert info if unused/not defined present flags has not "zero" svn path=/trunk/; revision=44333
2012-08-08From Johannes Berg via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7583Alexis La Goutte1-0/+13
Add radiotap A-MPDU status The new A-MPDU status extension for radiotap was adopted. http://www.radiotap.org/defined-fields/A-MPDU%20status From me Use proto_tree_add_item svn path=/trunk/; revision=44329
2012-05-02Rename the NetMon 802.11 radio header and radiotap 802.11 radio headerGuy Harris1-0/+273
dissector source files to match the "packet-ieee80211-XXX" pattern used for other 802.11 radio header dissectors. svn path=/trunk/; revision=42380