aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee17221.c
AgeCommit message (Collapse)AuthorFilesLines
2012-08-01remove unnecessary underscores from display filtersmmann1-3/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44181 f5534014-38df-0310-8fa8-9805f1628bb7
2012-06-28Update FSF address - part II.darkjames1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@43538 f5534014-38df-0310-8fa8-9805f1628bb7
2012-06-23Rename two entries to avoid having same filter name for entries with ↵pascal1-2/+2
incompatible types git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@43449 f5534014-38df-0310-8fa8-9805f1628bb7
2012-06-20Use separate filters for the RTT found on a SACK and the RTT found on amorriss1-95/+47
DATA chunk: having them in both places is helpful when looking at the messages but having them separate is helpful when graphing the RTTs. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@43406 f5534014-38df-0310-8fa8-9805f1628bb7
2012-03-06Use tvb_new_subset_remaining(...) rather than tvb_new_subset(...,-1,-1).wmeier1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@41376 f5534014-38df-0310-8fa8-9805f1628bb7
2012-03-05Fix filter name: "iee17221.channels" --> "ieee17221.channels"wmeier1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@41358 f5534014-38df-0310-8fa8-9805f1628bb7
2012-03-03Change all hf[] FT_UINT? fields referencing 'avp_bool_vals' to be FT_BOOLEAN ↵wmeier1-63/+71
fields. #include <stdio.h> not req'd; Add editor modelines for "3 space" indentation. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@41331 f5534014-38df-0310-8fa8-9805f1628bb7
2012-03-02Fix a few bugs found by Clang analysis: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) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@41324 f5534014-38df-0310-8fa8-9805f1628bb7
2012-03-02Fix proto_tree_add_item() 'encoding' args.wmeier1-649/+651
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@41285 f5534014-38df-0310-8fa8-9805f1628bb7
2012-03-02From Tom Bottom and Chris Pane via ↵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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@41282 f5534014-38df-0310-8fa8-9805f1628bb7