aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dtd.h
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2005-09-10 17:29:15 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2005-09-10 17:29:15 +0000
commit96326c0b8617db336cb85d122b1e1e5a00644f2b (patch)
treeac7c2065c289737d9c131c768c1c153e55747890 /epan/dtd.h
parent541fd750b86a0fa3666c4ec2d917ff6c23a332f9 (diff)
the dtd parser (still missing the glue) and few fixes to packet-xml.c
svn path=/trunk/; revision=15745
Diffstat (limited to 'epan/dtd.h')
-rw-r--r--epan/dtd.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/epan/dtd.h b/epan/dtd.h
new file mode 100644
index 0000000000..1db10fd371
--- /dev/null
+++ b/epan/dtd.h
@@ -0,0 +1,61 @@
+/*
+ * dtd.h
+ *
+ * XML dissector for ethereal
+ * DTD import declarations
+ *
+ * Copyright 2005, Luis E. Garcia Ontanon <luis.ontanon@gmail.com>
+ *
+ * $Id $
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@ethereal.com>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef _DTD_H_
+#define _DTD_H_
+
+#include <glib.h>
+
+typedef struct _dtd_build_data_t {
+ gchar* proto_name;
+ gchar* media_type;
+ gchar* description;
+ gchar* proto_root;
+
+ GPtrArray* elements;
+ GPtrArray* attributes;
+
+ gchar* location;
+ GString* error;
+} dtd_build_data_t;
+
+typedef struct _dtd_token_data_t {
+ gchar* text;
+ gchar* location;
+} dtd_token_data_t;
+
+typedef struct _dtd_named_list_t {
+ gchar* name;
+ GPtrArray* list;
+} dtd_named_list_t;
+
+extern GString* dtd_preparse(gchar* dname, gchar* fname, GString* err);
+extern dtd_build_data_t* dtd_parse(GString* s);
+
+#endif