diff options
author | Gerald Combs <gerald@wireshark.org> | 2010-04-01 21:55:01 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2010-04-01 21:55:01 +0000 |
commit | cc5d7670bde3072fdc4aa738c7643e50133c2cb2 (patch) | |
tree | ff46a91b7d856f44d11317046d270906f9b538ef /cfile.h | |
parent | dc5e066caedd01323d815c60a8c988263bdd9619 (diff) | |
download | wireshark-cc5d7670bde3072fdc4aa738c7643e50133c2cb2.tar.gz wireshark-cc5d7670bde3072fdc4aa738c7643e50133c2cb2.tar.bz2 wireshark-cc5d7670bde3072fdc4aa738c7643e50133c2cb2.zip |
Keep a copy of the interface description and capture filter around so that
we can use it in the main window title during and after capture. Add a
"-X" option for providing a description for stdin.
svn path=/trunk/; revision=32357
Diffstat (limited to 'cfile.h')
-rw-r--r-- | cfile.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -44,6 +44,7 @@ typedef enum { typedef struct _capture_file { file_state state; /* Current state of capture file */ gchar *filename; /* Name of capture file */ + gchar *source; /* Temp file source, e.g. "Pipe from elsewhere" */ gboolean is_tempfile; /* Is capture file a temporary file? */ gboolean user_saved; /* If capture file is temporary, has it been saved by user yet? */ gint64 f_datalen; /* Size of capture file data (uncompressed) */ |