aboutsummaryrefslogtreecommitdiffstats
path: root/frame_tvbuff.c
AgeCommit message (Collapse)AuthorFilesLines
2014-01-08TFShark (Terminal Fileshark) v.001. Bug 9607 ↵Michael Mann1-0/+68
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9607) This is a VERY PRELIMINARY version of tfshark. It's an attempt to jumpstart FileShark and its architecture. Right now it's mostly just a very stripped down version of tshark with all of the necessary build modifications (including now building filetap library since tfshark depends on it) This code has helped me identify what I believe to be all of the necessary layers for a complete fileshark architecture. And those layers will slowly be added in time (patches always welcome!). svn path=/trunk/; revision=54646
2014-01-02No seek-read routines use the length argument, so eliminate it fromGuy Harris1-3/+3
wtap_seek_read(). svn path=/trunk/; revision=54570
2013-08-20If packet was modified fallback to generic cloneJakub Zawadzki1-4/+5
svn path=/trunk/; revision=51443
2013-08-14Add some XXX comment.Jakub Zawadzki1-0/+3
svn path=/trunk/; revision=51358
2013-08-04Cleanup tvbJakub Zawadzki1-7/+2
- make tvb_ops->tvb_size a gsize field, not function call - remove not needed forward declaration / forward line svn path=/trunk/; revision=51141
2013-07-17Revert r50668, remove fd check to fix CID 1050093Jakub Zawadzki1-9/+3
svn path=/trunk/; revision=50698
2013-07-16Fix Coverity CID 1050093: Dereference before null check.Chris Maynard1-5/+11
svn path=/trunk/; revision=50668
2013-07-15Fix misassembly problems in CAP-LINK_ETH-20030618-150138.5VWJakub Zawadzki1-2/+2
When reading packet we need to read whole one including tvb_frame->offset, not only tvb->length svn path=/trunk/; revision=50606
2013-07-14Rename frame_invalidate to frame_cache.Jakub Zawadzki1-5/+5
svn path=/trunk/; revision=50594
2013-07-14Yet another place where + offset was missing.Jakub Zawadzki1-2/+1
svn path=/trunk/; revision=50592
2013-07-13Add support for cloning TVBs, move tvb_new() prototype to wtap-int.hJakub Zawadzki1-9/+169
svn path=/trunk/; revision=50558
2013-07-11packet dissection now takes pointer to tvb instead of guint8 dataJakub Zawadzki1-0/+114
implement frame_tvbuff, right now almost a copy of 'real' tvb. svn path=/trunk/; revision=50497