Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3315 -
authormorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>
Tue, 28 Feb 2012 03:19:49 +0000 (03:19 +0000)
committermorriss <morriss@f5534014-38df-0310-8fa8-9805f1628bb7>
Tue, 28 Feb 2012 03:19:49 +0000 (03:19 +0000)
commit20103c69ba638c0bb0c25ad95880064315411a31
treec87777778582b85628c9b87d197fcc16d8f47eee
parent6589fc54d33eb9125cdab2894cca035b319916f6
Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3315 -
make Save-As/Displayed/All-Packets save not only the displayed packets but
also any other packets needed (e.g., for reassembly) to fully dissect the
displayed packets.

This works only for the "All packets" case; choosing only the Selected packet,
the Marked packets, or a range of packets would require actually storing which
packets depend on which (too much memory) or going through the packet list many
times (too slow).  Also, this behavior is always the case: you can't save the
displayed packets without their dependencies (I don't see why this would be
desirable).

So far this is done for SCTP and things using the reassembly routines (TCP has
been tested).

The Win32 dialog was modified but hasn't been tested yet.

One confusing aspect of the UI is that the Displayed count in the Save-As
dialog does not match the number of displayed packets.  (I tried renaming the
button "Displayed + Dependencies" but it looked too big.)  The tooltip tries
to explain this and the fact that this works only in the All-Packets case;
suggestions for improvement are welcome.

Implementation details:

Dissectors (or the reassembly code) can list frames which were needed to
build the current frame's tree.  If the current frame passes the display
filter then each listed frame is marked as "depended upon" (this takes up the
last free frame_data flag).

When performing a Save-As/Displayed/All-Packets then choose packets which
passed the dfilter _or_ are depended upon.

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@41216 f5534014-38df-0310-8fa8-9805f1628bb7
17 files changed:
epan/dissectors/packet-sctp.c
epan/epan.c
epan/frame_data.c
epan/frame_data.h
epan/libwireshark.def
epan/packet.c
epan/packet.h
epan/packet_info.h
epan/reassemble.c
file.c
packet-range.c
packet-range.h
ui/gtk/capture_file_dlg.c
ui/gtk/print_dlg.c
ui/gtk/range_utils.c
ui/gtk/range_utils.h
ui/win32/file_dlg_win32.c