diff options
author | Marius Halden <marius.h@lden.org> | 2015-11-08 08:58:37 +0100 |
---|---|---|
committer | Marius Halden <marius.h@lden.org> | 2016-05-07 14:26:17 +0200 |
commit | f6119b76d73b9cdff3cbfd902675a36bcacbcd48 (patch) | |
tree | 6c6f1581fd53a5b3094bfdc46838c2c893760a20 /conf.h | |
parent | f0ff36f558329d096526004d4d912973bafd3904 (diff) |
Start adding ssl support
Diffstat (limited to 'conf.h')
-rw-r--r-- | conf.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -55,6 +55,11 @@ typedef struct conf { char *ft_listen; char **protocols; char *cafile; +#ifdef WITH_GNUTLS + int ssl; + char *ssl_cert; + char *ssl_key; +#endif } conf_t; G_GNUC_MALLOC conf_t *conf_load(int argc, char *argv[]); |