From Thomas Anders:
[obnox/wireshark/wip.git] / file.h
1 /* file.h
2  * Definitions for file structures and routines
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 #ifndef __FILE_H__
26 #define __FILE_H__
27
28 #include "packet-range.h"
29 #include "wiretap/wtap.h"
30 #include <epan/dfilter/dfilter.h>
31 #include "print.h"
32 #include <errno.h>
33 #include <epan/epan.h>
34
35 #include "cfile.h"
36
37 /* Return values from "cf_read()", "cf_continue_tail()", and
38    "cf_finish_tail()". */
39 typedef enum {
40         READ_SUCCESS,   /* read succeeded */
41         READ_ERROR,     /* read got an error */
42         READ_ABORTED    /* read aborted by user */
43 } read_status_t;
44
45 int  cf_open(char *, gboolean, capture_file *);
46 void cf_close(capture_file *);
47 void cf_reload(void);
48 read_status_t cf_read(capture_file *);
49 int  cf_start_tail(char *, gboolean, capture_file *);
50 read_status_t cf_continue_tail(capture_file *, int, int *);
51 read_status_t cf_finish_tail(capture_file *, int *);
52 /* size_t read_frame_header(capture_file *); */
53 gboolean cf_save(char *fname, capture_file * cf, packet_range_t *range, guint save_format);
54 gchar *cf_get_display_name(capture_file *);
55
56 gboolean filter_packets(capture_file *cf, gchar *dfilter, gboolean force);
57 void reftime_packets(capture_file *);
58 void colorize_packets(capture_file *);
59 void redissect_packets(capture_file *cf);
60 int retap_packets(capture_file *cf);
61 typedef enum {
62         PP_OK,
63         PP_OPEN_ERROR,
64         PP_WRITE_ERROR
65 } pp_return_t;
66 pp_return_t print_packets(capture_file *cf, print_args_t *print_args);
67 pp_return_t write_pdml_packets(capture_file *cf, print_args_t *print_args);
68 pp_return_t write_psml_packets(capture_file *cf, print_args_t *print_args);
69
70 void change_time_formats(capture_file *);
71
72 gboolean find_packet_protocol_tree(capture_file *cf, const char *string);
73 gboolean find_packet_summary_line(capture_file *cf, const char *string);
74 gboolean find_packet_data(capture_file *cf, const guint8 *string,
75                           size_t string_size);
76 gboolean find_packet_dfilter(capture_file *cf, dfilter_t *sfcode);
77
78 guint8 get_int_value(char char_val);
79 gboolean find_ascii(capture_file *cf, char *ascii_text, gboolean ascii_search, char *ftype, gboolean case_type);
80 gboolean find_in_gtk_data(capture_file *cf, gpointer *data, char *ascii_text, gboolean case_type, gboolean search_type);
81 gboolean goto_frame(capture_file *cf, guint fnumber);
82 gboolean goto_bottom_frame(capture_file *cf);
83 gboolean goto_top_frame(capture_file *cf);
84 void goto_framenum(capture_file *cf);
85
86
87 void select_packet(capture_file *, int);
88 void unselect_packet(capture_file *);
89
90 void unselect_field(capture_file *);
91
92 /*
93  * Mark a particular frame in a particular capture.
94  */
95 void mark_frame(capture_file *, frame_data *);
96
97 /*
98  * Unmark a particular frame in a particular capture.
99  */
100 void unmark_frame(capture_file *, frame_data *);
101
102 /* Moves or copies a file. Returns 0 on failure, 1 on success */
103 int file_mv(char *from, char *to);
104
105 /* Copies a file. Returns 0 on failure, 1 on success */
106 int file_cp(char *from, char *to);
107
108 char *cf_read_error_message(int, gchar *);
109
110 #endif /* file.h */