diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2003-02-25 21:39:53 +0000 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2003-02-25 21:39:53 +0000 |
commit | 9459f247cb80debfdecc12675d8e21c3c9c4e508 (patch) | |
tree | 1c6d86907113e09cc58a7ec36c4ab345f1dfa719 /src/cli.gaa | |
parent | ea38531beb3463b4df19af58ee484ca2f2a6c1c9 (diff) | |
download | gnutls-9459f247cb80debfdecc12675d8e21c3c9c4e508.tar.gz |
Added option to disable all TLS 1.0 extensions.
Diffstat (limited to 'src/cli.gaa')
-rw-r--r-- | src/cli.gaa | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cli.gaa b/src/cli.gaa index 3b21543cff..acc583cb98 100644 --- a/src/cli.gaa +++ b/src/cli.gaa @@ -26,6 +26,9 @@ option (x509fmtder) { $fmtder = 1 } "Use DER format for certificates" #int fingerprint; option (f, fingerprint) { $fingerprint = 1 } "Send the openpgp fingerprint, instead of the key." +#int disable_extensions; +option ( disable-extensions) { $disable_extensions = 1 } "Disable all the TLS extensions." + #int xml; option (xml) { $xml = 1 } "Print the certificate information in XML format." @@ -104,7 +107,7 @@ init { $resume=0; $port=443; $rest_args=NULL; $ciphers=NULL; $kx=NULL; $comp=NULL; $macs=NULL; $ctype=NULL; $nciphers=0; $nkx=0; $ncomp=0; $nmacs=0; $nctype = 0; $record_size=0; $fingerprint=0; $pgp_trustdb=NULL; $pgp_keyring=NULL; $x509_crlfile = NULL; - $x509_cafile = NULL; $pgp_keyfile=NULL; $pgp_certfile=NULL; + $x509_cafile = NULL; $pgp_keyfile=NULL; $pgp_certfile=NULL; $disable_extensions = 0; $x509_keyfile=NULL; $x509_certfile=NULL; $crlf = 0; $xml = 0; $srp_username=NULL; $srp_passwd=NULL; $fmtder = 0; $starttls =0; } |