aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bat.c
AgeCommit message (Collapse)AuthorFilesLines
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-12-15Fix [-Wmissing-prototypes]Jakub Zawadzki1-3/+3
svn path=/trunk/; revision=54135
2013-09-12Convert a few more dissectors to wmemPascal Quantin1-6/+7
svn path=/trunk/; revision=51991
2013-07-15Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-4/+4
svn path=/trunk/; revision=50626
2013-03-28Fix Coverity CID's 280305-280306: Negative loop bound. (These are yet more ↵Chris Maynard1-7/+7
annoying instances of not properly dealing with tvb_reported_length_remaining() possibly returning -1.) #BACKPORT(1.6,1.8) svn path=/trunk/; revision=48622
2013-03-18From beroset:Anders Broman1-13/+13
remove C++ incompatibilities https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8416 svn path=/trunk/; revision=48396
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45017
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-7/+7
Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
2011-09-26Get rid of check_col, while at it set ENC.Anders Broman1-44/+38
svn path=/trunk/; revision=39146
2011-02-16Use tvb_ip_to_str() when it can eliminate a tvb_get_ptr() call.Jeff Morriss1-6/+2
svn path=/trunk/; revision=35961
2011-02-07Fix bug #5657: Update my mail address Stephen Fisher1-1/+1
svn path=/trunk/; revision=35868
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-6/+6
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) svn path=/trunk/; revision=35224
2010-06-04From Sven Eckelmann: Remove recursion for aggregated packets in batman ↵Bill Meier1-69/+59
dissector "Different developers wanted to have the recursive dissector for aggregated packets changed to a iterative approach." See Bug #4836: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4836 svn path=/trunk/; revision=33080
2010-06-03From Sven Eckelmann: Synchronize bat dissector with batadv dissectorBill Meier1-28/+105
"Different people made changes to enhance the batman-adv dissector. It seems that the batman dissector wasn't touched and misses those changes. Following patchset should improve the dissector the same way Gerald Combs, Guy Harris and Bill Meier improved batman-adv." See Bug #4384: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4834 From me: Add back a few 'if (check_col()) ...'; I probably went just a bit too far in changes I made in packet-batadv.c svn path=/trunk/; revision=33062
2009-09-25Upon 2nd thought: revert removal of 'if (check_col(...))' around ↵Bill Meier1-11/+18
col_add_fstr & etc. svn path=/trunk/; revision=30133
2009-09-24Minor changes:Bill Meier1-60/+42
- Use col_clear only once (in the right place); - Use col_add_fstr instead of col_clear/col_append_fstr; - check_col no longer req'd; svn path=/trunk/; revision=30118
2009-08-16Switch a bunch of dissectors over to using tvb_new_subset_remaining()Kovarththanan Rajaratnam1-4/+4
svn path=/trunk/; revision=29446
2009-08-09Don't guard col_set_str (COL_INFO/COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-15/+5
svn path=/trunk/; revision=29345
2009-07-07Changed flags_set_truth -> tfs_set_notsetStig Bjørlykke1-2/+2
svn path=/trunk/; revision=28989
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-26/+26
(1) Trailing/leading spaces are removed from 'name's/'blurb's (2) Duplicate 'blurb's are replaced with NULL (3) Empty ("") 'blurb's are replaced with NULL (4) BASE_NONE, NULL, 0x0 are used for 'display', 'strings' and 'bitmask' fields for FT_NONE, FT_BYTES, FT_IPv4, FT_IPv6, FT_ABSOLUTE_TIME, FT_RELATIVE_TIME, FT_PROTOCOL, FT_STRING and FT_STRINGZ field types (5) Only allow non-zero value for 'display' if 'bitmask' is non-zero svn path=/trunk/; revision=28770
2009-03-03From Sven Eckelmann:Anders Broman1-11/+12
Support aggregated originator messages in B.A.T.M.A.N. dissector. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3268 svn path=/trunk/; revision=27588
2008-10-06Put a newline at the end of the file.Guy Harris1-1/+1
svn path=/trunk/; revision=26365
2008-10-06From Sven Eckelmann:Anders Broman1-11/+840
B.A.T.M.A.N. dissector consists of many source files svn path=/trunk/; revision=26362
2008-07-09From Sven Eckelmann:Jaap Keuter1-5/+4
Just forgot to set inited variable in reg_handoff_bat_*(). svn path=/trunk/; revision=25689
2008-06-22Changes in B.A.T.M.A.N. dissector:Stig Bjørlykke1-3/+3
- Fixed last element in value_string arrays - Fixed a possible bug in a loop making a currently unused string - Changed preferences prefix to "batman" - Added udp port preference in batman to be uniform - Fixed some indents - Added break in some switches - Make it compile on win32 svn path=/trunk/; revision=25522
2008-06-22From Sven Eckelmann (bug 2632):Stig Bjørlykke1-0/+70
Added B.A.T.M.A.N. dissector svn path=/trunk/; revision=25520