aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dtd.h
diff options
context:
space:
mode:
authorlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2005-09-10 17:29:15 +0000
committerlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2005-09-10 17:29:15 +0000
commit7c6c4c5be584362f113398a6a6bf20bdee49ea0d (patch)
treeac7c2065c289737d9c131c768c1c153e55747890 /epan/dtd.h
parentcf432631fb76b2dd378a344f15e279fdb6cf16c5 (diff)
the dtd parser (still missing the glue) and few fixes to packet-xml.c
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15745 f5534014-38df-0310-8fa8-9805f1628bb7
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