aboutsummaryrefslogtreecommitdiff
path: root/src/config.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2009-12-02 20:58:39 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2009-12-02 20:58:39 +0200
commit565650272f219fd372347f0ff3375b09caa18952 (patch)
tree9e9c96e4fb72332df0e1dd8fef9c51905b0793aa /src/config.c
parent3164dc277082c023337d32ecf21da62d991399af (diff)
downloadwydawca-565650272f219fd372347f0ff3375b09caa18952.tar.gz
wydawca-565650272f219fd372347f0ff3375b09caa18952.tar.bz2
Initial implementation of mysql over SSL.
* src/config.c (sql_kw): New keyword `ssl-ca'. * src/sql.c (sql_init_method): Initialize SSL, if required. * src/sql.h (struct sqlconn): New member `cacert'.
Diffstat (limited to 'src/config.c')
-rw-r--r--src/config.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.c b/src/config.c
index 6c351d9..c877c26 100644
--- a/src/config.c
+++ b/src/config.c
@@ -632,6 +632,8 @@ static struct grecs_keyword sql_kw[] = {
grecs_type_string, NULL, offsetof(struct sqlconn, user) },
{ "password", N_("arg"), N_("Set SQL user password"),
grecs_type_string, NULL, offsetof(struct sqlconn, password) },
+ { "ssl-ca", N_("file"), N_("File name of the Certificate Authority (CA) certificate"),
+ grecs_type_string, NULL, offsetof(struct sqlconn, cacert) },
{ NULL }
};

Return to:

Send suggestions and report system problems to the System administrator.