ssl,dtls: use ProtocolVersion from Server Hello
[metze/wireshark/wip.git] / epan / dtd.h
1 /*
2  *  dtd.h
3  *
4  * XML dissector for Wireshark
5  * DTD import declarations
6  *
7  * Copyright 2005, Luis E. Garcia Ontanon <luis@ontanon.org>
8  *
9  * Wireshark - Network traffic analyzer
10  * By Gerald Combs <gerald@wireshark.org>
11  * Copyright 1998 Gerald Combs
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26  */
27
28 #ifndef _DTD_H_
29 #define _DTD_H_
30
31 #include <glib.h>
32 #include <stdlib.h> /* exit() */
33
34 typedef struct _dtd_build_data_t {
35         gchar* proto_name;
36         gchar* media_type;
37         gchar* description;
38         gchar* proto_root;
39         gboolean recursion;
40
41         GPtrArray* elements;
42         GPtrArray* attributes;
43
44         GString* error;
45 } dtd_build_data_t;
46
47 typedef struct _dtd_token_data_t {
48         gchar* text;
49         gchar* location;
50 } dtd_token_data_t;
51
52 typedef struct _dtd_named_list_t {
53         gchar* name;
54         GPtrArray* list;
55 } dtd_named_list_t;
56
57 extern GString* dtd_preparse(const gchar* dname, const gchar* fname, GString* err);
58 extern dtd_build_data_t* dtd_parse(GString* s);
59
60 #endif