summaryrefslogtreecommitdiff
path: root/src/serv.gaa
diff options
context:
space:
mode:
authorDaiki Ueno <ueno@unixuser.org>2009-08-19 16:53:07 +0900
committerSimon Josefsson <simon@josefsson.org>2009-08-19 14:54:50 +0200
commit979cc233a4a6795e4af1c2f67e3276834e717ccf (patch)
treeae6433553519d26776e62cd0e6dd402c04034034 /src/serv.gaa
parentbdee4a4266b71eedd05938d139e0be50ce1dec8a (diff)
downloadgnutls-979cc233a4a6795e4af1c2f67e3276834e717ccf.tar.gz
session ticket support
Signed-off-by: Simon Josefsson <simon@josefsson.org>
Diffstat (limited to 'src/serv.gaa')
-rw-r--r--src/serv.gaa5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/serv.gaa b/src/serv.gaa
index 4fe9870c68..c216e0000e 100644
--- a/src/serv.gaa
+++ b/src/serv.gaa
@@ -24,6 +24,9 @@ option (q, quiet) { $quiet = 1 } "Suppress some messages."
#int nodb;
option (nodb) { $nodb = 1 } "Does not use the resume database."
+#int noticket;
+option (noticket) { $noticket = 1 } "Does not issue session tickets."
+
#int http;
option (http) { $http = 1 } "Act as an HTTP Server."
option (echo) { $http = 0 } "Act as an Echo Server."
@@ -121,7 +124,7 @@ INCOMP ra
init { $generate=0; $port=5556; $http=0; $ciphers=NULL;
$kx=NULL; $comp=NULL; $macs=NULL; $ctype=NULL; $nciphers=0;
- $nkx=0; $ncomp=0; $nmacs=0; $nctype = 0; $nodb = 0;
+ $nkx=0; $ncomp=0; $nmacs=0; $nctype = 0; $nodb = 0; $noticket = 0;
$x509_cafile = NULL; $pgp_keyfile=NULL; $pgp_certfile=NULL;
$x509_keyfile=NULL; $x509_certfile=NULL; $x509_crlfile = NULL;
$x509_dsakeyfile=NULL; $x509_dsacertfile=NULL;