aboutsummaryrefslogtreecommitdiffstats
path: root/epan/diam_dict.h
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2007-07-20 00:15:17 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2007-07-20 00:15:17 +0000
commit5e290061f2690d39bad202179927049601bb4ca5 (patch)
treed98e9a1b037b2ebda595fd66dfabf9b3472f7d97 /epan/diam_dict.h
parentfae881dc4519ee7198d6e91955c0792a8cbb5e5f (diff)
- <?avp-proto and <?type-proto to instruct about which dissector to use for a given type or avp
- dissect timestamps - add all the avps that were commented out in the dictionary svn path=/trunk/; revision=22360
Diffstat (limited to 'epan/diam_dict.h')
-rw-r--r--epan/diam_dict.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/epan/diam_dict.h b/epan/diam_dict.h
index a6b16c9022..83b3a73d3e 100644
--- a/epan/diam_dict.h
+++ b/epan/diam_dict.h
@@ -66,12 +66,20 @@ typedef struct _ddict_cmd_t {
struct _ddict_cmd_t* next;
} ddict_cmd_t;
+typedef struct _ddict_xmlpi_t {
+ char* name;
+ char* key;
+ char* value;
+ struct _ddict_xmlpi_t* next;
+} ddict_xmlpi_t;
+
typedef struct _ddict_t {
ddict_application_t* applications;
ddict_vendor_t* vendors;
ddict_cmd_t* cmds;
ddict_typedefn_t* typedefns;
ddict_avp_t* avps;
+ ddict_xmlpi_t* xmlpis;
} ddict_t;
extern void ddict_print(FILE* fh, ddict_t* d);