aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-btrfcomm.c
AgeCommit message (Collapse)AuthorFilesLines
2010-01-13From Didier Gautheron:Anders Broman1-6/+2
check_col.diff Remove redundant calls to check_col() if it guards only one columns function with one parameter after the column type. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4394 svn path=/trunk/; revision=31519
2009-11-12Make the MCC length check a little more picky.Gerald Combs1-5/+6
svn path=/trunk/; revision=30937
2009-11-12Check for an invalid MCC length. Fixes bug 4212.Gerald Combs1-6/+8
svn path=/trunk/; revision=30936
2009-09-23Don't col_clear() followed by col_set_str(). A col_set_str() will clear ↵Kovarththanan Rajaratnam1-1/+0
(replace) any existing string (the fence still needs to be respected though) svn path=/trunk/; revision=30086
2009-08-15This patch introduces packet_add_new_data_source() which effectively ↵Kovarththanan Rajaratnam1-1/+1
deprecates add_new_data_source(). This is based on the following observation: 1) The tvb + name (aka. data_source) is only used when the protocol tree is visible The current implementation of add_new_data_source() doesn't take this into account and simply allocates a data_source regardless. This is what packet_add_new_data_source() tries to rectify. A couple of dissectors have already been switched over to the new packet_add_new_data_source(). Many are still missing. Help appreciated! svn path=/trunk/; revision=29427
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-2/+1
svn path=/trunk/; revision=29340
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-3/+3
(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-05-13Apply some of the patches from:Anders Broman1-2/+1
http://wiki.wireshark.org/Development/Optimization svn path=/trunk/; revision=28356
2009-03-15Fix perror, calloc usage so checkAPIs doesn't complain.Bill Meier1-2/+2
(The usage is inside an #ifdef REMOVED so it's just commented out so checkAPIs.pl doesn't see it). svn path=/trunk/; revision=27731
2008-10-02Make sure any data structures we allocate are properly initialized. FixesGerald Combs1-12/+2
bug 2922. svn path=/trunk/; revision=26333
2008-07-09Fix some mis-spellingsBill Meier1-4/+4
svn path=/trunk/; revision=25682
2008-06-27Fix some checkAPIs warnings.Gerald Combs1-1/+1
svn path=/trunk/; revision=25617
2007-10-23Apply the small performance enhancment patches for:Anders Broman1-1/+1
- if offset is 0, tvb_length is the same as tvb_length_remaining, just faster. Replace - col_append_fstr() with faster col_append_str() - col_add_str() with col_set_str() when it's safe svn path=/trunk/; revision=23252
2007-04-14fix MacOSX gcc-3.3 warnings about unused tfs/value_string variablesSebastien Tandel1-59/+0
most have been tagged unused (few have been deleted if dissector has not been modified since a long time) move packet-ssl-utils.c to DISSECTOR_SRC svn path=/trunk/; revision=21431
2006-08-14rename some structures and defines from the se_tree to the emem_tree prefixRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18894
2006-07-20Remove remaining instances of NEED_SNPRINTF_H. Fix up whitespace.Gerald Combs1-42/+38
svn path=/trunk/; revision=18775
2006-07-01Get rid of an unused variable.Guy Harris1-1/+0
svn path=/trunk/; revision=18625
2006-05-28Ethereal->WiresharkAnders Broman1-2/+2
svn path=/trunk/; revision=18234
2006-05-27initial bluetooth rfcomm dissector.Ronnie Sahlberg1-0/+1013
this dissector will not yet detect when ppp is passed over the rfcomm link but the old code to detect and deescapt the ppp data is still in the dissector, though ifdeffed out to serve as inspiration when ppp over rfcomm captures are made available. the only captures i have with rfcomm are for raw serial communications so they dont contain any ppp frames. :-( svn path=/trunk/; revision=18221