aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2005-05-17 19:13:05 +0000
committerAnders Broman <anders.broman@ericsson.com>2005-05-17 19:13:05 +0000
commitd8566c002832a69e1498e70d4229686709e09544 (patch)
tree2264c6127bd316bff4a003c30b9b3e987f0ff668
parentf1368440e62696e7d1c9c209970c08b988e84641 (diff)
Add some more media types to be dissected as xml.
svn path=/trunk/; revision=14382
-rw-r--r--plugins/xml/packet-xml.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/xml/packet-xml.c b/plugins/xml/packet-xml.c
index c3a5f0d40f..052b89bd12 100644
--- a/plugins/xml/packet-xml.c
+++ b/plugins/xml/packet-xml.c
@@ -119,6 +119,15 @@ proto_reg_handoff_xml(void)
dissector_add_string("media_type", "text/vnd.wap.co", xml_handle);
dissector_add_string("media_type", "text/vnd.wap.emn", xml_handle);
dissector_add_string("media_type", "application/vnd.wv.csp+xml", xml_handle);
+ /* The Extensible Markup Language (XML) Configuration Access Protocol (XCAP)
+ * draft-ietf-simple-xcap-06
+ */
+ dissector_add_string("media_type", "application/xcap-el+xml", xml_handle);
+ dissector_add_string("media_type", "application/xcap-att+xml", xml_handle);
+ dissector_add_string("media_type", "application/xcap-error+xml", xml_handle);
+ dissector_add_string("media_type", "application/xcap-caps+xml", xml_handle);
+ /* draft-ietf-simple-presence-rules-02 */
+ dissector_add_string("media_type", "application/auth-policy+xml", xml_handle);
/* Other */
dissector_add_string("media_type", "application/smil", xml_handle);
dissector_add_string("media_type", "application/cpim-pidf+xml", xml_handle);