aboutsummaryrefslogtreecommitdiffstats
path: root/frame_data_sequence.h
AgeCommit message (Collapse)AuthorFilesLines
2013-03-27From Hadriel Kaplan via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8223Evan Huus1-0/+3
Add a 2-pass display-filter flag to tshark so that reassembly and other forward- looking dissections can be used with filters. It's a bit of a hack, but this entire area of 2-pass analysis etc. is a giant pile of hacks to begin with and needs cleaning up. For now just having this feature is a big enough win. svn path=/trunk/; revision=48589
2012-12-17Implement the frame mark, ignore, and time reference actions. Update theGerald Combs1-1/+9
text of a few menu items. svn path=/trunk/; revision=46576
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2011-04-27Make the frame_data_sequence structure opaque, and move some otherGuy Harris1-17/+1
implementation details into frame_data_sequence.c as well. svn path=/trunk/; revision=36886
2011-04-27Create a new frame_data_sequence data type; it represents a denseGuy Harris1-0/+62
sequence of frame_data structures, indexed by the frame number. Extract the relevant bits of the capture_file data structure and move them to the frame_data_sequence, and move the relevant code from cfile.c and tweak it to handle frame_data_sequence structures. Have a possibly-null pointer to a frame_data_sequence structure in the capture_file structure; if it's null, we aren't keeping a sequence of frame_data structures (we don't keep that sequence when we're doing one-pass processing in TShark). Nothing in libwireshark should care about a capture_file structure; get rid of some unnecessary includes of cfile.h. svn path=/trunk/; revision=36881