summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-starteam.c
AgeCommit message (Collapse)AuthorFilesLines
2010-10-30Use value_string_ext fcns to access a value_string array;Bill Meier1-129/+141
Also: Initialize a global variable each time a file (re)loaded; Use consistent indentation. svn path=/trunk/; revision=34721
2010-05-13As suggested in ↵Jeff Morriss1-23/+20
http://www.wireshark.org/lists/wireshark-dev/200809/msg00075.html (as referenced in https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2907 ) and https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3411 : Write a new convenience routine for finding a conversation and, if it is not found, create it. The frame number and addresses are taken from pinfo (as is the common case). Use this function in a bunch of dissectors. svn path=/trunk/; revision=32790
2010-04-06#include <string.h> not needed.Bill Meier1-2/+0
svn path=/trunk/; revision=32410
2009-08-09Don't guard col_set_str (COL_INFO/COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-3/+1
svn path=/trunk/; revision=29345
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
2008-08-26#include <emem.h> not req'dBill Meier1-1/+0
svn path=/trunk/; revision=26091
2008-02-18Remove svn:executable propertyBill Meier1-0/+0
svn path=/trunk/; revision=24384
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-28from metatech at flashmail.com :Ronnie Sahlberg1-0/+715
new protocol STARTEAM >Hi, > >Here is a submission of a new dissector for the Borland StarTeam protocol. >For the compiler warnings, I tried to get rid of them, at least what MSVC6 >is reporting. If your compiler reports more, please tell me the line number. >As I do not have SVN installed but I compiled from the 0.99.5 tarball, >please forgive me if I cannot easily generate diffs against current SVN (I >tried my best with Cygwin). >I also added the sample capture file on the Wiki on which I ran 900 loops >of fuzz testing with no problem. svn path=/trunk/; revision=21606