summaryrefslogtreecommitdiff
path: root/src/serv.gaa
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2004-06-06 13:50:15 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2004-06-06 13:50:15 +0000
commit1c13b0dd740f3255f9a5bb0feb8a9718ced62127 (patch)
tree8c128f40898f3e6105efe1dcc4d66ceeac8259ce /src/serv.gaa
parent560a706dfd8b93e625a58026bf17588a2e14bfb3 (diff)
downloadgnutls-1c13b0dd740f3255f9a5bb0feb8a9718ced62127.tar.gz
several improvements
Diffstat (limited to 'src/serv.gaa')
-rw-r--r--src/serv.gaa7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/serv.gaa b/src/serv.gaa
index c4dcf0c871..09f54e835c 100644
--- a/src/serv.gaa
+++ b/src/serv.gaa
@@ -58,6 +58,12 @@ option (x509keyfile) STR "FILE" { $x509_keyfile = $1 } "X.509 key file to use."
#char *x509_certfile;
option (x509certfile) STR "FILE" { $x509_certfile = $1 } "X.509 Certificate file to use."
+#char *x509_dsakeyfile;
+option (x509dsakeyfile) STR "FILE" { $x509_dsakeyfile = $1 } "Alternative X.509 key file to use."
+
+#char *x509_dsacertfile;
+option (x509dsacertfile) STR "FILE" { $x509_dsacertfile = $1 } "Alternative X.509 certificate file to use."
+
#char *srp_passwd;
option (srppasswd) STR "FILE" { $srp_passwd = $1 } "SRP password file to use."
@@ -102,6 +108,7 @@ init { $generate=0; $port=5556; $http=0; $ciphers=NULL;
$nkx=0; $ncomp=0; $nmacs=0; $nctype = 0; $nodb = 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;
$srp_passwd=NULL; $srp_passwd_conf=NULL; $quiet = 0;
$pgp_trustdb=NULL; $pgp_keyring=NULL; $fmtder = 0;
$dh_params_file=NULL; $debug=0; }