aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-oicq.c
AgeCommit message (Collapse)AuthorFilesLines
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-1/+1
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
2009-09-24Remove check_col() guardKovarththanan Rajaratnam1-5/+1
svn path=/trunk/; revision=30124
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-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-5/+5
(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-06Correct bug in heuristic so as to strengthen it a bit.Bill Meier1-3/+6
Specifically: a little research verifies that the correct heuristic is: Succeed if the byte at offset 0 is an STX *and* the bytes at offset 3/4 correspond to a valid OICQ command. The code was actually effectively doing an *or* and thus the heuristic was quite weak. svn path=/trunk/; revision=27619
2008-12-20Fix various typos and spelling errors (mostly in text strings)Bill Meier1-2/+2
svn path=/trunk/; revision=27065
2008-05-17Fix bug #2531: UDP packet on port 8000 incorrectly dissected as OICQ protocol.Stephen Fisher1-3/+10
Changed OICQ dissector to be a new style dissector that checks to make sure two of the fields match defined string values before continuing dissection. svn path=/trunk/; revision=25317
2007-04-27Change of authors email addressJaap Keuter1-1/+1
svn path=/trunk/; revision=21603
2006-07-10from DuBingyaoTomas Kukosa1-14/+42
patch for the OICQ dissector to identify unknown command svn path=/trunk/; revision=18696
2006-05-21change a whole bunch of ethereal into wiresharkRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18196
2006-01-03Du Bingyao:Jörg Mayer1-0/+173
New OICQ dissector. Me: removed some not needed variables and some unneeded includes. svn path=/trunk/; revision=16940