aboutsummaryrefslogtreecommitdiffstats
path: root/capture_opts.h
diff options
context:
space:
mode:
Diffstat (limited to 'capture_opts.h')
-rw-r--r--capture_opts.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/capture_opts.h b/capture_opts.h
index a403b495a2..8f2e9648ea 100644
--- a/capture_opts.h
+++ b/capture_opts.h
@@ -293,13 +293,16 @@ typedef struct capture_options_tag {
gdouble file_duration; /**< Switch file after n seconds */
gboolean has_file_interval; /**< TRUE if ring interval specified */
gint32 file_interval; /**< Create time intervals of n seconds */
+ gboolean has_file_packets; /**< TRUE if ring packet count is
+ specified */
+ int file_packets; /**< Switch file after n packets */
gboolean has_ring_num_files; /**< TRUE if ring num_files specified */
guint32 ring_num_files; /**< Number of multiple buffer files */
/* autostop conditions */
gboolean has_autostop_files; /**< TRUE if maximum number of capture files
are specified */
- gint32 autostop_files; /**< Maximum number of capture files */
+ int autostop_files; /**< Maximum number of capture files */
gboolean has_autostop_packets; /**< TRUE if maximum packet count is
specified */