aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-etch.c
AgeCommit message (Collapse)AuthorFilesLines
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-05-08Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-1/+1
svn path=/trunk/; revision=42513
2011-10-15Convert proto_tree_add_item() 'encoding' arg for field types FT_STRING, ↵Bill Meier1-1/+1
FT_STRINGZ, FT_UINT_STRING as follows: 1. If there's no character encoding (ENC_ASCII, ...) specified then use ENC_ASCII. 2. For all but FT_UINT_STRING, always use ENC_NA (replacing any existing True/1/FALSE/0 /ENC_BIG_ENDIAN/ENC_LITTLE_ENDIAN). svn path=/trunk/; revision=39426
2011-05-27Treat TVBs as opaque: use the accessor functions instead of accessing the fieldsJeff Morriss1-1/+1
directly. svn path=/trunk/; revision=37420
2011-04-22Cast away bogus warnings. (I begin to see why C++ has templates here,Guy Harris1-2/+2
complicated though they might be for both users and implementors....) svn path=/trunk/; revision=36792
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-2/+2
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-10-20Use DISSECTOR_ASSERT (not g_assert) in dissectors...Bill Meier1-4/+4
svn path=/trunk/; revision=34577
2010-10-19Use dynamically created value_string_ext to store hash/symbol value_strings;Bill Meier1-139/+166
Also: minor code reformatting and re-arrangement. svn path=/trunk/; revision=34569
2010-10-18Don't use g_strcmp0(): it only exists in glib > 2.16.Jeff Morriss1-34/+50
Make read_length() static. Start function names at column 0. svn path=/trunk/; revision=34565
2010-10-18Try to fix compile errors on 64 bit systems.Bill Meier1-1/+3
svn path=/trunk/; revision=34561
2010-10-18From Holger Grandy: ETCH dissectorBill Meier1-0/+946
See: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5095 From me: Fix a bug in add_symbol which caused occasional Wireshark crashes; Add additional checking during parse of symbol hash file; Improve "directory not found" error message; Do misc code cleanup and simplification. svn path=/trunk/; revision=34558