Have "goto_frame()" put up error dialog boxes itself, rather than having
[obnox/wireshark/wip.git] / file.h
1 /* file.h
2  * Definitions for file structures and routines
3  *
4  * $Id: file.h,v 1.99 2003/03/02 22:07:21 guy Exp $
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 #ifndef __FILE_H__
26 #define __FILE_H__
27
28 #include "wiretap/wtap.h"
29 #include <epan/dfilter/dfilter.h>
30 #include "print.h"
31 #include <errno.h>
32 #include <epan/epan.h>
33
34 #include "cfile.h"
35
36 /* Return values from "read_cap_file()", "continue_tail_cap_file()",
37    and "finish_tail_cap_file()". */
38 typedef enum {
39         READ_SUCCESS,   /* read succeeded */
40         READ_ERROR,     /* read got an error */
41         READ_ABORTED    /* read aborted by user */
42 } read_status_t;
43
44 int  open_cap_file(char *, gboolean, capture_file *);
45 void close_cap_file(capture_file *);
46 read_status_t read_cap_file(capture_file *, int *);
47 int  start_tail_cap_file(char *, gboolean, capture_file *);
48 read_status_t continue_tail_cap_file(capture_file *, int, int *);
49 read_status_t finish_tail_cap_file(capture_file *, int *);
50 /* size_t read_frame_header(capture_file *); */
51 gboolean save_cap_file(char *, capture_file *, gboolean, gboolean, guint);
52
53 int filter_packets(capture_file *cf, gchar *dfilter);
54 void colorize_packets(capture_file *);
55 void redissect_packets(capture_file *cf);
56 int print_packets(capture_file *cf, print_args_t *print_args);
57 void change_time_formats(capture_file *);
58 gboolean find_packet(capture_file *cf, dfilter_t *sfcode);
59
60 gboolean goto_frame(capture_file *cf, guint fnumber);
61
62 void select_packet(capture_file *, int);
63 void unselect_packet(capture_file *);
64
65 void unselect_field(void);
66
67 /*
68  * Mark a particular frame in a particular capture.
69  */
70 void mark_frame(capture_file *, frame_data *);
71
72 /*
73  * Unmark a particular frame in a particular capture.
74  */
75 void unmark_frame(capture_file *, frame_data *);
76
77 /* Moves or copies a file. Returns 0 on failure, 1 on success */
78 int file_mv(char *from, char *to);
79
80 /* Copies a file. Returns 0 on failure, 1 on success */
81 int file_cp(char *from, char *to);
82
83 char *file_open_error_message(int, gboolean, int);
84 char *file_read_error_message(int);
85 char *file_write_error_message(int);
86
87 #endif /* file.h */