diff options
author | Rob Austein <sra@hactrn.net> | 2014-09-20 05:32:25 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-09-20 05:32:25 +0000 |
commit | 431bebfd816b8268ea1bb7f98f92be46d67fd6a8 (patch) | |
tree | a7751e87bd2a371b6a6cc1a24a7599ffbaf84093 /rpki/up_down.py | |
parent | 3343f587e25c153333981cc4c9ad43c95516c279 (diff) |
Remove gratuitous use of async HTTP where rootd is calling pubd.
svn path=/branches/tk705/; revision=5963
Diffstat (limited to 'rpki/up_down.py')
-rw-r--r-- | rpki/up_down.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/rpki/up_down.py b/rpki/up_down.py index a145ed28..c144c8a8 100644 --- a/rpki/up_down.py +++ b/rpki/up_down.py @@ -783,3 +783,12 @@ class cms_msg(rpki.x509.XML_CMS_object): saxify = sax_handler.saxify allow_extra_certs = True allow_extra_crls = True + +class cms_msg_no_sax(cms_msg): + """ + Class to hold a CMS-signed up-down PDU. + + Name is a transition kludge: once we ditch SAX, this will become cms_msg. + """ + + saxify = None |