summaryrefslogtreecommitdiff
path: root/src/cli.gaa
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-02-15 11:34:33 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-02-15 11:34:33 +0000
commit9c43b5569f3c8da65e376254497592d6005a03c1 (patch)
tree568e52e3de9651a2c9f0bb72e57bbc86c1dabbc1 /src/cli.gaa
parent157c25871735d3e84a88bb6b087360cf37c29e57 (diff)
downloadgnutls-9c43b5569f3c8da65e376254497592d6005a03c1.tar.gz
updated client and server
Diffstat (limited to 'src/cli.gaa')
-rw-r--r--src/cli.gaa7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/cli.gaa b/src/cli.gaa
index 5d4bbc9c7f..a9d85893cb 100644
--- a/src/cli.gaa
+++ b/src/cli.gaa
@@ -6,6 +6,9 @@ option (r, resume) { $resume = 1 } "Connect, establish a session. Connect again
#int port;
option (p, port) INT "integer" { $port = $1 } "The port to connect to."
+#int record_size;
+option (recordsize) INT "integer" { $record_size = $1 } "The maximum record size to advertize."
+
#int nciphers;
#char **ciphers;
@@ -29,7 +32,7 @@ option (kx) *STR "kx1 kx2..." { $kx = $1; $nkx = @1 } "Key exchange methods to e
#int nctype;
#char **ctype;
-option (certtypes) *STR "certtype1 certtype2..." { $ctype = $1; $nctype = @1 } "Certificate types to enable."
+option (ctypes) *STR "certType1 certType2..." { $ctype = $1; $nctype = @1 } "Certificate types to enable."
option (l, list) { print_list(); exit(0); } "Print a list of the supported algorithms and modes."
@@ -41,5 +44,5 @@ rest optional *STR "hostname" { $rest_args = $1; $nrest_args = @1 }
init { $resume=0; $port=5556; $rest_args=NULL; $nrest_args=0; $ciphers=NULL;
$kx=NULL; $comp=NULL; $macs=NULL; $ctype=NULL; $nciphers=0;
- $nkx=0; $ncomp=0; $nmacs=0; $nctype = 0; }
+ $nkx=0; $ncomp=0; $nmacs=0; $nctype = 0; $record_size=0; }