aboutsummaryrefslogtreecommitdiff
path: root/scripts/irbe-cli.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2007-10-04 03:06:25 +0000
committerRob Austein <sra@hactrn.net>2007-10-04 03:06:25 +0000
commit2ae55cb29667344e43ef58737680421d06d90e65 (patch)
tree5ae6abee07cd1f50bf2d3b73956bc1995d16a003 /scripts/irbe-cli.py
parent7dd3da9e7b4a119be78fc9be8921b9d4c3954b22 (diff)
Rename *.peer_ta => *.cms_ta, add parent.https_ta and repository.https_ta.
svn path=/docs/left-right-xml; revision=1088
Diffstat (limited to 'scripts/irbe-cli.py')
-rwxr-xr-xscripts/irbe-cli.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/scripts/irbe-cli.py b/scripts/irbe-cli.py
index a72c0664..7e91375e 100755
--- a/scripts/irbe-cli.py
+++ b/scripts/irbe-cli.py
@@ -34,9 +34,13 @@ class cmd_mixin(object):
self.action = arg
self.type = "query"
- def client_query_peer_ta(self, arg):
- """Special handler for --peer_ta option."""
- self.peer_ta = rpki.x509.X509(Auto_file=arg)
+ 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_https_ta(self, arg):
+ """Special handler for --https_ta option."""
+ self.https_ta = rpki.x509.X509(Auto_file=arg)
def client_reply_decode(self):
pass