aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee80211-radiotap.c
AgeCommit message (Collapse)AuthorFilesLines
2013-01-31Comment out unused hf[] entries & etc.Bill Meier1-1/+3
(found by checkhf) svn path=/trunk/; revision=47389
2012-12-26Fix a bunch of warnings.Guy Harris1-5/+5
Cast away some implicit 64-bit-to-32-bit conversion errors due to use of sizeof. Cast away some implicit 64-bit-to-32-bit conversion errors due to use of strtol() and strtoul(). Change some data types to avoid those implicit conversion warnings. When assigning a constant to a float, make sure the constant isn't a double, by appending "f" to the constant. Constify a bunch of variables, parameters, and return values to eliminate warnings due to strings being given const qualifiers. Cast away those warnings in some cases where an API we don't control forces us to do so. Enable a bunch of additional warnings by default. Note why at least some of the other warnings aren't enabled. randpkt.c and text2pcap.c are used to build programs, so they don't need to be in EXTRA_DIST. If the user specifies --enable-warnings-as-errors, add -Werror *even if the user specified --enable-extra-gcc-flags; assume they know what they're doing and are willing to have the compile fail due to the extra GCC warnings being treated as errors. svn path=/trunk/; revision=46748
2012-11-27Fix several [-Wshadow] warnings;Bill Meier1-238/+324
Also: - Create/use several extended value strings; - Reformat hf[] array; - Do various whitespace and formatting changes to use a consistent style. svn path=/trunk/; revision=46222
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-2/+0
svn path=/trunk/; revision=45017
2012-09-18From Daniel via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7716Alexis La Goutte1-2/+501
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-791/+794
* Reorder code ! Match with Wireshark "Rules" (put in top value_string and static hf_..., in bottom proto_register_radiotap...) svn path=/trunk/; revision=44336
2012-08-08Enhance radiotap dissectorAlexis La Goutte1-0/+18
* 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-08Add A-MPDU Status Present flagAlexis La Goutte1-0/+9
svn path=/trunk/; revision=44330
2012-08-08From Johannes Berg via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7583Alexis La Goutte1-1/+83
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-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=43538
2012-05-02Rename the NetMon 802.11 radio header and radiotap 802.11 radio headerGuy Harris1-0/+2137
dissector source files to match the "packet-ieee80211-XXX" pattern used for other 802.11 radio header dissectors. svn path=/trunk/; revision=42380