aboutsummaryrefslogtreecommitdiffstats
path: root/file.h
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2013-10-11 21:29:12 +0000
committerJeff Morriss <jeff.morriss.ws@gmail.com>2013-10-11 21:29:12 +0000
commitaae1de7f9e5ea7cf9684aa827afad910fead1311 (patch)
tree63038f5d478b9dc376a086d55d091c56f6955e43 /file.h
parent564ca2d5e9fc3366eec476c0d27839b20eef972a (diff)
cf_start_tail() is (now) just a wrapper around cf_open(). Get rid of it and just call cf_open().
svn path=/trunk/; revision=52553
Diffstat (limited to 'file.h')
-rw-r--r--file.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/file.h b/file.h
index 320a713ba3..e375a196f1 100644
--- a/file.h
+++ b/file.h
@@ -163,18 +163,6 @@ gboolean cf_read_frame_r(capture_file *cf, const frame_data *fdata,
gboolean cf_read_frame(capture_file *cf, frame_data *fdata);
/**
- * Start reading from the end of a capture file.
- * This is used in "Update list of packets in Real-Time".
- *
- * @param cf the capture file to be read from
- * @param fname the filename to be read from
- * @param is_tempfile is this a temporary file?
- * @param err the error code, if an error had occurred
- * @return one of cf_status_t
- */
-cf_status_t cf_start_tail(capture_file *cf, const char *fname, gboolean is_tempfile, int *err);
-
-/**
* Read packets from the "end" of a capture file.
*
* @param cf the capture file to be read from