diff options
author | Laurent Deniel <laurent.deniel@free.fr> | 2000-08-21 15:45:33 +0000 |
---|---|---|
committer | Laurent Deniel <laurent.deniel@free.fr> | 2000-08-21 15:45:33 +0000 |
commit | 8fbd65cc7fa830d497c14ee29d9912e618a09e8f (patch) | |
tree | c0887a4f01bc643e51d4b028a23f4e8e290b2925 /file.h | |
parent | ff42c86f9a39f23e89bad0581b126c9f96e48268 (diff) | |
download | wireshark-8fbd65cc7fa830d497c14ee29d9912e618a09e8f.tar.gz wireshark-8fbd65cc7fa830d497c14ee29d9912e618a09e8f.tar.bz2 wireshark-8fbd65cc7fa830d497c14ee29d9912e618a09e8f.zip |
Frames in the packet list can now be marked by the user using
the middle mouse button. The marked packets are displayed in
reverse video but this should change in the future (the color
should be configurable via the GUI).
Then, the marked packets can be saved (via the "Save as"
window dialog).
Other features will be added in the future (I am waiting for
your comments and wishes).
svn path=/trunk/; revision=2322
Diffstat (limited to 'file.h')
-rw-r--r-- | file.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ /* file.h * Definitions for file structures and routines * - * $Id: file.h,v 1.75 2000/08/11 13:34:30 deniel Exp $ + * $Id: file.h,v 1.76 2000/08/21 15:45:21 deniel Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -124,7 +124,7 @@ int start_tail_cap_file(char *, gboolean, capture_file *); read_status_t continue_tail_cap_file(capture_file *, int, int *); read_status_t finish_tail_cap_file(capture_file *, int *); /* size_t read_frame_header(capture_file *); */ -int save_cap_file(char *, capture_file *, gboolean, guint); +int save_cap_file(char *, capture_file *, gboolean, gboolean, guint); int filter_packets(capture_file *cf, gchar *dfilter); void colorize_packets(capture_file *); |