aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/ber.c
AgeCommit message (Collapse)AuthorFilesLines
2009-01-04Minor rewording of a few comments; fix a few typos.Bill Meier1-1/+1
svn path=/trunk/; revision=27151
2007-11-05Strengthen BER and ERF heuristics to solve:Anders Broman1-0/+3
Fail to load I4B traces http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1972 svn path=/trunk/; revision=23367
2006-11-05change all file offsets from long to gint64 so we can - theoretically - ↵Ulf Lamping1-2/+2
handle files > 2GB correct. Please distclean Win32 builds! svn path=/trunk/; revision=19814
2006-09-12Get rid of a compiler warning.Gerald Combs1-8/+9
svn path=/trunk/; revision=19224
2006-06-17fix coverity "bug" 184 (false positive)Ronnie Sahlberg1-2/+1
the contract for wiretap ..._read() functions are that the *err pointer MUST always be provided as a valid pointer and not a NULL pointer. ber.c contained a spurios and redundant check for the pointer being non-NULL wich triggered coverity to detect this as a false positive. this redundant test if the pointer is NULL has been revoved. svn path=/trunk/; revision=18492
2006-05-15Fix some compiler warnings.Guy Harris1-5/+7
That requires that we define G_GINT64_MODIFIER ourselves if glib.h doesn't define it for us, as that's what should be used to print 64-bit integral values in any calls that use any of the GLib printf functions (directly or indirectly). svn path=/trunk/; revision=18154
2006-05-08Basic Encoding Rules (BER) encoded file reading. Not really a packet trace ↵Graeme Lunt1-0/+187
format but still useful for dissecting arbitrary BER/DER ASN.1. svn path=/trunk/; revision=18110