aboutsummaryrefslogtreecommitdiffstats
path: root/file.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-06-22 03:39:07 +0000
committerGuy Harris <guy@alum.mit.edu>1999-06-22 03:39:07 +0000
commit919fe8f24cd5d48ac806e36fea1c87c2c46d2634 (patch)
tree34454a919b5cddf6bca030d0b045af5ec39c4d98 /file.h
parent851d27fff121f6cb7a7271329212bd62f605540a (diff)
Update the display if the "command-line-specified" time format is
changed by updating those columns showing the time in the "command-line-specified" format, not by redoing the entire packet list display; that way, the display continues to show the same packets and any packet the user selected remains selected. (It's also less work to do that - you don't have to re-dissect the packet.) Turn "redisplay_packets()" into "filter_packets()", and do some other cleanups. svn path=/trunk/; revision=325
Diffstat (limited to 'file.h')
-rw-r--r--file.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/file.h b/file.h
index f80958a1a0..63088a8382 100644
--- a/file.h
+++ b/file.h
@@ -1,7 +1,7 @@
/* file.h
* Definitions for file structures and routines
*
- * $Id: file.h,v 1.15 1999/06/19 01:14:51 guy Exp $
+ * $Id: file.h,v 1.16 1999/06/22 03:39:06 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -135,7 +135,8 @@ int load_cap_file(char *, capture_file *);
int tail_cap_file(char *, capture_file *);
/* size_t read_frame_header(capture_file *); */
-void redisplay_packets(capture_file *cf);
+void filter_packets(capture_file *);
+void change_time_formats(capture_file *);
/* Moves or copies a file. Returns 0 on failure, 1 on success */
int file_mv(char *from, char *to);