Fix for bug 5702:
[obnox/wireshark/wip.git] / capture_info.h
1 /* capture_info.h
2  * capture info functions
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
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 info functions
29  *
30  */
31
32 #ifndef __CAPTURE_INFO_H__
33 #define __CAPTURE_INFO_H__
34
35 #include "capture_opts.h"
36
37 /* open the info - init values (wtap, counts), create dialog */
38 extern void capture_info_open(capture_options *capture_opts);
39
40 /* new file arrived - (eventually close old wtap), open wtap */
41 extern gboolean capture_info_new_file(const char *new_filename);
42
43 /* new packets arrived - read from wtap, count */
44 extern void capture_info_new_packets(int to_read);
45
46 /* close the info - close wtap, destroy dialog */
47 extern void capture_info_close(void);
48
49
50
51 /** Current Capture info. */
52 typedef struct {
53     /* handle */
54     gpointer        ui;             /**< user interface handle */
55
56     /* capture info */
57     packet_counts   *counts;        /**< protocol specific counters */
58     time_t          running_time;   /**< running time since last update */
59     gint            new_packets;    /**< packets since last update */
60 } capture_info;
61
62
63 /** Create the capture info dialog */
64 extern void capture_info_ui_create(
65 capture_info    *cinfo,
66 capture_options *capture_opts);
67
68 /** Update the capture info counters in the dialog */
69 extern void capture_info_ui_update(
70 capture_info    *cinfo);
71
72 /** Destroy the capture info dialog again */
73 extern void capture_info_ui_destroy(
74 capture_info    *cinfo);
75
76
77 #endif /* capture_info.h */