1.99.8 → 1.99.9.
[metze/wireshark/wip.git] / wiretap / ascend-int.h
1 /* ascend-int.h
2  * Definitions for routines common to multiple modules in the Lucent/Ascend
3  * capture file reading code code, but not used outside that code.
4  *
5  * Wireshark - Network traffic analyzer
6  * By Gerald Combs <gerald@wireshark.org>
7  * Copyright 1998 Gerald Combs
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2
12  * of the License, or (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22  */
23
24 #ifndef __ASCEND_INT_H__
25 #define __ASCEND_INT_H__
26
27 #include <glib.h>
28 #include "ws_symbol_export.h"
29
30 extern int at_eof;
31
32 extern const gchar *ascend_parse_error;
33
34 /*
35  * Pointer to the pseudo-header for the current packet.
36  */
37 extern struct ascend_phdr *pseudo_header;
38
39 typedef struct {
40         time_t inittime;
41         gboolean adjusted;
42         gint64 next_packet_seek_start;
43 } ascend_t;
44
45 /* Here we provide interfaces to make our scanner act and look like lex */
46 int ascendlex(void);
47
48 void init_parse_ascend(void);
49 void ascend_init_lexer(FILE_T fh);
50 gboolean check_ascend(FILE_T fh, struct wtap_pkthdr *phdr);
51 typedef enum {
52     PARSED_RECORD,
53     PARSED_NONRECORD,
54     PARSE_FAILED
55 } parse_t;
56 parse_t parse_ascend(ascend_t *ascend, FILE_T fh, struct wtap_pkthdr *phdr,
57                 Buffer *buf, guint length);
58
59 #endif /* ! __ASCEND_INT_H__ */