diff options
author | Rob Austein <sra@hactrn.net> | 2008-04-09 02:26:30 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2008-04-09 02:26:30 +0000 |
commit | a956e33cb2e9adcb1d1b962910cc9ba1e2505659 (patch) | |
tree | ddc7803aab7b1bfbf4acb7d4adbb7f3bc828d660 /rpkid/irbe-cli.py | |
parent | b4dbbd247046ac1f1c54eac3745cd8843291ccd1 (diff) |
First stage of rototill to support new trust anchor model.
svn path=/docs/left-right-xml; revision=1640
Diffstat (limited to 'rpkid/irbe-cli.py')
-rwxr-xr-x | rpkid/irbe-cli.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/rpkid/irbe-cli.py b/rpkid/irbe-cli.py index f52435e5..033ea1d3 100755 --- a/rpkid/irbe-cli.py +++ b/rpkid/irbe-cli.py @@ -48,13 +48,13 @@ class cmd_mixin(object): self.action = arg self.type = "query" - def client_query_cms_ta(self, arg): - """Special handler for --cms_ta option.""" - self.cms_ta = rpki.x509.X509(Auto_file=arg) + def client_query_peer_biz_cert(self, arg): + """Special handler for --peer_biz_cert option.""" + self.peer_biz_cert = rpki.x509.X509(Auto_file=arg) def client_query_https_ta(self, arg): - """Special handler for --https_ta option.""" - self.https_ta = rpki.x509.X509(Auto_file=arg) + """Special handler for --peer_biz_glue option.""" + self.peer_biz_glue = rpki.x509.X509(Auto_file=arg) def client_reply_decode(self): pass |