diff options
author | Rob Austein <sra@hactrn.net> | 2009-09-28 23:40:13 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-09-28 23:40:13 +0000 |
commit | 4ac358688ab18b33421885b0180b079ec24f0e38 (patch) | |
tree | 969bc35f254ded208cf562a547a572ff4082fecc /rpkid/left-right-schema.rnc | |
parent | 579ccda41e8fdbdf32e9fbfa3f7568a57ea69110 (diff) |
Add <list_published_objects/> PDU to left-right protocol, to support
audit of what rpkid thinks should be published vs what really is.
svn path=/rpkid/irbe_cli.py; revision=2790
Diffstat (limited to 'rpkid/left-right-schema.rnc')
-rw-r--r-- | rpkid/left-right-schema.rnc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/rpkid/left-right-schema.rnc b/rpkid/left-right-schema.rnc index 044ebc6c..aa1c09ee 100644 --- a/rpkid/left-right-schema.rnc +++ b/rpkid/left-right-schema.rnc @@ -23,6 +23,7 @@ query_elt |= child_query query_elt |= repository_query query_elt |= list_roa_requests_query query_elt |= list_resources_query +query_elt |= list_published_objects_query # PDUs allowed in a reply reply_elt |= self_reply @@ -32,6 +33,7 @@ reply_elt |= child_reply reply_elt |= repository_reply reply_elt |= list_resources_reply reply_elt |= list_roa_requests_reply +reply_elt |= list_published_objects_reply reply_elt |= report_error_reply # Tag attributes for bulk operations @@ -218,6 +220,18 @@ list_roa_requests_reply = element list_roa_requests { attribute ipv6 { ipv6_list }? } +# <list_published_objects/> element + +list_published_objects_query = element list_published_objects { + tag, self_handle +} + +list_published_objects_reply = element list_published_objects { + tag, self_handle, + attribute uri { uri }, + base64 +} + # <report_error/> element error = xsd:token { maxLength="1024" } |