move output_to_pipe flag from tethereal's loop_data into capture_opts, so it can...
[metze/wireshark/wip.git] / capture_opts.h
1 /* capture_opts.h
2  * Capture options (all parameters needed to do the actual capture)
3  *
4  * $Id$
5  *
6  * Ethereal - Network traffic analyzer
7  * By Gerald Combs <gerald@ethereal.com>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25
26 /** @file
27  *  
28  *  Capture options (all parameters needed to do the actual capture)
29  *
30  */
31
32 #ifndef __CAPTURE_OPTS_H__
33 #define __CAPTURE_OPTS_H__
34
35
36 /* Current state of capture engine. XXX - differentiate states */
37 typedef enum {
38         CAPTURE_STOPPED,                /**< stopped */
39     CAPTURE_PREPARING,      /**< preparing, but still no response from capture child */
40         CAPTURE_RUNNING             /**< capture child signalled ok, capture is running now */
41 } capture_state;
42
43
44 /** Capture options coming from user interface */
45 typedef struct capture_options_tag {
46     /* general */
47     void     *cf;           /**< handle to cfile (note: untyped handle) */
48     gchar    *cfilter;      /**< Capture filter string */
49     gchar    *iface;        /**< the network interface to capture from */
50
51 #ifdef _WIN32
52     int      buffer_size;   /**< the capture buffer size (MB) */
53 #endif
54     gboolean has_snaplen;   /**< TRUE if maximum capture packet length
55                                  is specified */
56     int      snaplen;       /**< Maximum captured packet length */
57     gboolean promisc_mode;  /**< Capture in promiscuous mode */
58     int      linktype;      /**< Data link type to use, or -1 for
59                                  "use default" */
60     gchar    *save_file;    /**< the capture file name */
61
62     /* GUI related */
63     gboolean real_time_mode;    /**< Update list of packets in real time */
64     gboolean show_info;         /**< show the info dialog */
65     gboolean quit_after_cap;    /** Makes a "capture only mode". Implies -k */
66     gboolean restart;           /**< restart after closing is done */
67
68     /* multiple files (and ringbuffer) */
69     gboolean multi_files_on;    /**< TRUE if ring buffer in use */
70
71     gboolean has_file_duration; /**< TRUE if ring duration specified */
72     gint32 file_duration;       /* Switch file after n seconds */
73     gboolean has_ring_num_files;/**< TRUE if ring num_files specified */
74     guint32 ring_num_files;     /**< Number of multiple buffer files */
75
76     /* autostop conditions */
77     gboolean has_autostop_files;/**< TRUE if maximum number of capture files
78                                            are specified */
79     gint32 autostop_files;      /**< Maximum number of capture files */
80
81     gboolean has_autostop_packets;      /**< TRUE if maximum packet count is
82                                            specified */
83     int autostop_packets;               /**< Maximum packet count */
84     gboolean has_autostop_filesize;     /**< TRUE if maximum capture file size
85                                              is specified */
86     gint32 autostop_filesize;           /**< Maximum capture file size */
87     gboolean has_autostop_duration;     /**< TRUE if maximum capture duration
88                                              is specified */
89     gint32 autostop_duration;           /**< Maximum capture duration */
90
91     /* internally used (don't touch from outside) */
92     int fork_child;                 /**< If not -1, in parent, process ID of child */
93 #ifdef _WIN32
94     int signal_pipe_fd;         /**< the pipe to signal the child */
95 #endif
96     capture_state state;        /**< current state of the capture engine */
97     gboolean output_to_pipe;    /**< save_file is a pipe (named or stdout) */
98 } capture_options;
99
100
101 /* initialize the capture_options with some reasonable values */
102 extern void
103 capture_opts_init(capture_options *capture_opts, void *cfile);
104
105 /* set a command line option value */
106 extern void
107 capture_opts_add_opt(capture_options *capture_opts, int opt, const char *optarg, gboolean *start_capture);
108
109 /* log content of capture_opts */
110 extern void
111 capture_opts_log(const char *log_domain, GLogLevelFlags log_level, capture_options *capture_opts);
112
113 /* list link layer types */
114 extern void 
115 capture_opts_list_link_layer_types(capture_options *capture_opts);
116
117 /* list interfaces */
118 extern void
119 capture_opts_list_interfaces(void);
120
121 /* trim the snaplen entry */
122 extern void 
123 capture_opts_trim_snaplen(capture_options *capture_opts, int snaplen_min);
124
125 /* trim the ring_num_files entry */
126 extern void 
127 capture_opts_trim_ring_num_files(capture_options *capture_opts);
128
129 /* trim the interface entry */
130 extern gboolean
131 capture_opts_trim_iface(capture_options *capture_opts, const char *capture_device);
132
133 #endif /* capture_opts.h */