HACK: pinfo->private_data points to smb_info again
[wireshark-wip.git] / capture_info.h
blob4b250efcd72f635055d5c8a7ae40c9a967f398d1
1 /* capture_info.h
2 * capture info functions
4 * $Id$
6 * Wireshark - Network traffic analyzer
7 * By Gerald Combs <gerald@wireshark.org>
8 * Copyright 1998 Gerald Combs
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 /** @file
28 * capture info functions
32 #ifndef __CAPTURE_INFO_H__
33 #define __CAPTURE_INFO_H__
35 #include "capture_opts.h"
36 #include "capture_session.h"
38 #ifdef __cplusplus
39 extern "C" {
40 #endif /* __cplusplus */
42 /* open the info - init values (wtap, counts), create dialog */
43 extern void capture_info_open(capture_session *cap_session);
45 /* new file arrived - (eventually close old wtap), open wtap */
46 extern gboolean capture_info_new_file(const char *new_filename);
48 /* new packets arrived - read from wtap, count */
49 extern void capture_info_new_packets(int to_read);
51 /* close the info - close wtap, destroy dialog */
52 extern void capture_info_close(void);
56 /** Current Capture info. */
57 typedef struct {
58 /* handle */
59 gpointer ui; /**< user interface handle */
61 /* capture info */
62 packet_counts *counts; /**< protocol specific counters */
63 time_t running_time; /**< running time since last update */
64 gint new_packets; /**< packets since last update */
65 } capture_info;
68 /** Create the capture info dialog */
69 extern void
70 capture_info_ui_create(capture_info *cinfo, capture_session *cap_session);
72 /** Update the capture info counters in the dialog */
73 extern void capture_info_ui_update(
74 capture_info *cinfo);
76 /** Destroy the capture info dialog again */
77 extern void capture_info_ui_destroy(
78 capture_info *cinfo);
80 #ifdef __cplusplus
82 #endif /* __cplusplus */
84 #endif /* capture_info.h */