aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tvbuff.c
AgeCommit message (Expand)AuthorFilesLines
2006-07-05Make our tvb exists before we try to dereference it. Fixes some of the gerald1-32/+35
2006-06-19New rutine tvb_format_text_wsp() which will change "whiite space" characters ...etxrab1-0/+21
2006-05-21name changesahlberg1-8/+8
2006-03-10add guid-utils.h to Makefile.commonkukosa1-4/+0
2006-03-10new FT_GUID handling - big/little endian supportedkukosa1-0/+35
2006-01-07Add some inflateEnd() calls to free up stuff associated with a streamguy1-1/+7
2005-09-23as tvb functions are frequently used by a lot of dissectors, use DISSECTOR_AS...ulfl1-55/+55
2005-09-18assert that tvb is not NULLulfl1-0/+1
2005-09-11Replace tvb_memcpy() calls that extract IPv4 addresses into a guint32,guy1-1/+0
2005-09-10Add "tvb_get_ipv4()" and "tvb_get_ipv6()" addresses, to fetch IPv4 andguy1-0/+25
2005-08-17snprintf -> g_snprintfulfl1-2/+2
2005-08-10add new function tvb_get_ephemeral_stringz()sahlberg1-0/+26
2005-08-10rename ep_tvb_fake_unicode() to tvb_get_ephemeral_faked_unicode() and update ...sahlberg1-6/+3
2005-08-10rename ep_tvb_get_string() to tvb_get_ephemeral_string() asnd update the docu...sahlberg1-1/+1
2005-07-28add an ep version of tvb_fake_unicode()sahlberg1-0/+38
2005-07-26new functions:lego1-2/+30
2005-07-24addsahlberg1-0/+32
2005-07-21When trying to handle gzip-compressed data, don't seek past the end of our gerald1-0/+6
2005-04-28Use tvb_ensure_bytes_exist() in tvb_get_string() instead of throwing an gerald1-2/+1
2005-03-28In tvb_get_string(), throw an exception if our length is less than zero.gerald1-2/+6
2005-01-05From Chris Maynard: free up the z_stream we've allocated before failureguy1-0/+2
2004-12-30Add a "tvb_bytes_to_str_punct()" routine, which wrapsguy1-0/+11
2004-11-12From Charles Levert: in "tvb_fake_unicode()", convert non-ASCIIguy1-4/+4
2004-08-22Add "tvb_get_ntoh64()" and "tvb_get_letoh64()" routines to fetch 64-bitguy1-0/+18
2004-08-02Most developers have only 10 fingers, not 16. :-)guy1-3/+3
2004-08-02From Kelly Byrd: fix tvb_uncompress() for GZIP encoded content.obiot1-3/+3
2004-07-18Set the svn:eol-style property on all text files to "native", so thatguy1-1/+1
2004-05-10From Jerry Talkington: speed up tvb_uncompress() by increasing the minimalobiot1-17/+69
2004-05-07Memory management of tvb_uncompress() needs tvb_set_free_cb().obiot1-1/+2
2004-05-06From Kendy Kutzner: a char should be compared with '\0', not NULL.obiot1-3/+3
2004-05-05From Jerry Talkington:obiot1-1/+244
2004-03-23Use "tvb_format_text()" to display strings, so we handle non-printableguy1-1/+25
2004-02-19Constify a bunch of stuff.guy1-25/+33
2004-02-01Make "tvb_strneql()" take a "gchar *" rather than a "guint8 *" as theguy1-6/+6
2004-02-01packet-dcerpc-afs4int.cjmayer1-3/+3
2004-01-23Change return type of tvb_format_text from guint8* to gchar*.jmayer1-2/+2
2003-12-24In "tvb_ensure_bytes_remaining()", throw ReportedBoundsError, notguy1-2/+2
2003-12-23Have "tvb_ensure_length_remaining()" throw the appropriate exception ifguy1-1/+12
2003-12-03Replace two expensive macros with a much simpler mechanismsahlberg1-14/+21
2003-12-03performance updatesahlberg1-11/+2
2003-12-02Move the definition of the tvbuff_t structure and friends to tvbuff.hsahlberg1-68/+1
2003-09-28"compute_offset_length()" must, if it returns FALSE, and "exception" isguy1-5/+5
2003-09-10Make tvb_find_tvb() return -1 if either tvb length is 0. Otherwise, angerald1-1/+5
2003-08-27Add a "contains" operator for byte-strings, strings, and tvbuffs (protocols).gram1-1/+31
2003-08-08A bufsize of 0 makes no sense in either "tvb_get_nstringz()" orguy1-11/+8
2003-06-12Add new routines:guy1-10/+63
2003-06-09Fix "tvb_strneql()", "tvb_strncaseeql()", and "tvb_memeql()" not toguy1-6/+24
2003-06-04Use "tvb_ensure_bytes_exist()" to check, in "tvb_fake_unicode()", toguy1-7/+3
2003-05-19More tvb_get_nstringz0() fixes. Timo Sirainen pointed out that Badgerald1-1/+7
2003-04-30Modify tvb_get_nstringz*() to behave more like snprintf(). Make changesgerald1-26/+26