summaryrefslogtreecommitdiff
path: root/dtds
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2006-05-16 19:04:53 +0000
committerAnders Broman <anders.broman@ericsson.com>2006-05-16 19:04:53 +0000
commit56f73049b9671efeea99fbf7133845605f383e3e (patch)
treee9f47862efa7bf68a343e0230a62a230fcb53303 /dtds
parent103ad0253f531c40b35cc26194d90673d2ce99b4 (diff)
downloadwireshark-56f73049b9671efeea99fbf7133845605f383e3e.tar.gz
From Martin Mathieson:
- adds application/xpidf+xml as a media type known to be xml - appends /xml to the protocol column (as SDP does). It would be nice to append the top-level element, or the name taken from a matching DTD, but this will do for now (at least its a short name). - corrects the help text for the preference. I can see that it is registered as a heuristic for "http", "sip" and "media" I've also included a slightly updated version of reginfo.dtd (RFC 3680) for the dtds folder. svn path=/trunk/; revision=18173
Diffstat (limited to 'dtds')
-rw-r--r--dtds/reginfo.dtd41
1 files changed, 41 insertions, 0 deletions
diff --git a/dtds/reginfo.dtd b/dtds/reginfo.dtd
new file mode 100644
index 0000000000..d419948db1
--- /dev/null
+++ b/dtds/reginfo.dtd
@@ -0,0 +1,41 @@
+<? ethereal:protocol
+ proto_name="reginfo"
+ description="Reginfo XML doc (RFC 3680)"
+ hierarchy="yes" ?>
+
+<!--
+$Id$
+-->
+
+<!ELEMENT reginfo (registration)* >
+<!ATTLIST reginfo xmlns CDATA #REQUIRED
+ version CDATA #REQUIRED
+ state CDATA #REQUIRED>
+
+<!ELEMENT registration (contact)*>
+<!ATTLIST registration aor CDATA #REQUIRED
+ id CDATA #REQUIRED
+ state CDATA #REQUIRED>
+
+<!ELEMENT contact (uri | display-name? | unknown-param?)* >
+<!ATTLIST contact id CDATA #REQUIRED
+ state CDATA #REQUIRED
+ event CDATA #REQUIRED
+ expires CDATA #IMPLIED
+ retry-after CDATA #IMPLIED
+ duration-registered CDATA #IMPLIED
+ q CDATA #IMPLIED
+ cseq CDATA #IMPLIED
+ callid CDATA #IMPLIED>
+
+<!ELEMENT uri (#PCDATA)>
+
+<!ELEMENT display-name (#PCDATA)>
+<!ATTLIST display-name lang CDATA #IMPLIED>
+
+<!ELEMENT unknown-param (#PCDATA)>
+<!ATTLIST unknown-param name CDATA #REQUIRED>
+
+
+
+