aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cmpp.c
AgeCommit message (Collapse)AuthorFilesLines
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-4/+4
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-04-06#include <string.h> not needed.Bill Meier1-1/+0
svn path=/trunk/; revision=32411
2010-04-03Remove unneeded #include <stdio.h>Bill Meier1-1/+0
svn path=/trunk/; revision=32367
2009-10-25From Jakub Zawadzki:Anders Broman1-8/+3
Cleanup dissector code - use proper memory functions. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4164 svn path=/trunk/; revision=30691
2009-08-09Don't guard col_clear with col_checkKovarththanan Rajaratnam1-2/+1
svn path=/trunk/; revision=29344
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-12/+12
(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-08FT_BOOLEAN fields w/o bitmasks really should use BASE_NONE (not BASE_DEC,...).Bill Meier1-5/+5
svn path=/trunk/; revision=28317
2008-09-02Cleanup related to prefs & proto_reg_handoffBill Meier1-18/+7
svn path=/trunk/; revision=26124
2008-01-22Don't update COL_INFO at all if not claiming the packet as CMPP. Add a ↵Jeff Morriss1-11/+8
(guessed) upper-size limit on the heuristics and take out a check that the tvb length matches the protocol length--that would essentially disable TCP reassembly of this protocol svn path=/trunk/; revision=24164
2008-01-17Strengthen heuristics a little bit, remove a useless variable, put COL_INFO ↵Jeff Morriss1-10/+14
check in the right place svn path=/trunk/; revision=24126
2008-01-17Fix http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2206 : don't write ↵Jeff Morriss1-2/+2
into COL_INFO unless we've checked that it's there first. svn path=/trunk/; revision=24125
2008-01-10From Andy Chu: A dissector for China Mobile Point to Point (cmpp) protocol,Jeff Morriss1-0/+1007
it's the SMS protocol used in China. From me: some code cleanup and convert it from a plugin to a regular dissector. svn path=/trunk/; revision=24060