aboutsummaryrefslogtreecommitdiffstats
path: root/frame_data_sequence.c
AgeCommit message (Collapse)AuthorFilesLines
2011-04-27Make the frame_data_sequence structure opaque, and move some otherGuy Harris1-9/+27
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/+287
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