diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-08-03 12:44:40 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-08-03 12:44:40 +0000 |
commit | a3e7190456e494901c48fedcf49a727524f042e7 (patch) | |
tree | 4b1c1ee8893d0ccec754399a3e37d1547178a2f6 /globals.h | |
parent | 15a399d338210b4adeb88612b01777c836ab1fcb (diff) | |
download | wireshark-a3e7190456e494901c48fedcf49a727524f042e7.tar.gz wireshark-a3e7190456e494901c48fedcf49a727524f042e7.tar.bz2 wireshark-a3e7190456e494901c48fedcf49a727524f042e7.zip |
Add a "Save As" feature to the TCP Follow dialogue, to save the stream
file to a user-specified file.
Move the file-copy routine in save_cap_file() to an indepenent
function in file.c (copy_binary_file()) so that follow_dlg.c can use it.
Remove #include "follow.h" from the C files that don't need it.
svn path=/trunk/; revision=2200
Diffstat (limited to 'globals.h')
-rw-r--r-- | globals.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,7 +1,7 @@ /* globals.h * Global defines, etc. * - * $Id: globals.h,v 1.18 2000/06/27 04:35:45 guy Exp $ + * $Id: globals.h,v 1.19 2000/08/03 12:44:21 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -74,7 +74,6 @@ # define MIN(x, y) ((x) < (y) ? (x) : (y)) #endif -extern FILE *data_out_file; extern packet_info pi; extern capture_file cfile; extern guint main_ctx, file_ctx; |