aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee17221.c
AgeCommit message (Collapse)AuthorFilesLines
2013-02-12Fix typos in display filters caught by checkfiltername.plMichael Mann1-1/+1
svn path=/trunk/; revision=47645
2013-01-31Comment out unused hf[] entries & etc.Bill Meier1-74/+112
(found by checkhf) svn path=/trunk/; revision=47389
2013-01-14Fix Coverity CID 732304: Missing break in switch.Chris Maynard1-0/+1
svn path=/trunk/; revision=47077
2013-01-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-2/+2
svn path=/trunk/; revision=46962
2012-10-09Comment out unused variable remoce C++ style comments etc.Anders Broman1-7/+8
svn path=/trunk/; revision=45420
2012-10-09From Chris Wulff:Anders Broman1-1819/+2581
Minor bugfixes to packet-msrp.c and packet-mrp-mvrp.c Major updates to packet-ieee17221.c Changes to ieee17221.c update dissector from draft revision 18 / 19 code to draft revision 21. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7779 svn path=/trunk/; revision=45419
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-08-01remove unnecessary underscores from display filtersMichael Mann1-3/+3
svn path=/trunk/; revision=44181
2012-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=43538
2012-06-23Rename two entries to avoid having same filter name for entries with ↵Pascal Quantin1-2/+2
incompatible types svn path=/trunk/; revision=43449
2012-04-27From Tom Bottom:pascal1-7/+9
Fix AEM status field decoding https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7205 svn path=/trunk/; revision=42294
2012-04-27Fix typo errorspascal1-2/+2
svn path=/trunk/; revision=42288
2012-04-27From Tom Bottom:Anders Broman1-11/+16
The AEM status field was erroneously displayed using ACMP status field values. Minor change to display correct (as of draft 18) AEM status field values. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7205 svn path=/trunk/; revision=42284
2012-04-13Remove doubled semicolons and semicolons outside function.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=42053
2012-03-23Add a couple casts to fix the Windows builds.Jeff Morriss1-2/+2
svn path=/trunk/; revision=41745
2012-03-23From Tom Bottom via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6887 :Jeff Morriss1-82/+26
Address comments in the bug: fix up some hf issues and use proto_item_set_len() when necessary. Added status field dissection to AEM packets. From me: hf_aem_frequency is an FT_FLOAT and appears to have a length of 4 so use that length (instead of 5). svn path=/trunk/; revision=41742
2012-03-21Add missing break between AECP_COMMAND_SET_NAME and AECP_COMMAND_GET_NAME ↵Chris Maynard1-0/+1
cases. Fixes Coverity CID 1430: MISSING BREAK. svn path=/trunk/; revision=41699
2012-03-06Use tvb_new_subset_remaining(...) rather than tvb_new_subset(...,-1,-1).Bill Meier1-2/+2
svn path=/trunk/; revision=41376
2012-03-05Fix filter name: "iee17221.channels" --> "ieee17221.channels"Bill Meier1-1/+1
svn path=/trunk/; revision=41358
2012-03-03Change all hf[] FT_UINT? fields referencing 'avp_bool_vals' to be FT_BOOLEAN ↵Bill Meier1-63/+71
fields. #include <stdio.h> not req'd; Add editor modelines for "3 space" indentation. svn path=/trunk/; revision=41331
2012-03-02Fix a few bugs found by Clang analysis:Jeff Morriss1-6/+6
packet-ieee17221.c:3123:10: warning: Value stored to 'mr_offset' is never read - Put the offset increment inside the loop packet-ieee17221.c:2888:10: warning: Value stored to 'mr_subtree' is never read - Use the newly-created subtree (instead of the parent tree) packet-ieee17221.c:2692:13: warning: Value stored to 'next_tvb' is never read - Use next_tvb (instead of the main tvb which doesn't start at the correct offset) svn path=/trunk/; revision=41324
2012-03-02Fix proto_tree_add_item() 'encoding' args.Bill Meier1-649/+651
svn path=/trunk/; revision=41285
2012-03-02From Tom Bottom and Chris Pane via ↵Jeff Morriss1-0/+6044
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6887 : A new dissector for IEEE 1722.1. From me: some code cleanup, including: - Get rid of some unnecessary local variable initializations. - Put all of 1722.1 under one subtree. - Just put if(tree)s in the top-level function rather than scattered throughout. - Remove a couple "set but not used" warnings (a couple are #if'd out). - Don't use deprecated functions. svn path=/trunk/; revision=41282