From 8caaa5dcbe6a5913fac19f03c6d810a94e2fd60e Mon Sep 17 00:00:00 2001 From: octo Date: Tue, 25 Apr 2006 12:35:22 +0000 Subject: [PATCH] Added the config option `cacert' to the `apache' plugin. This allows to specify a file holding the CA Certificate. This is needed for connecting to SSL hosts that use self-signed certificates. --- src/apache.c | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/src/apache.c b/src/apache.c index c731908a..c90213e7 100644 --- a/src/apache.c +++ b/src/apache.c @@ -34,9 +34,10 @@ # define APACHE_HAVE_READ 0 #endif -static char *url = NULL; -static char *user = NULL; -static char *pass = NULL; +static char *url = NULL; +static char *user = NULL; +static char *pass = NULL; +static char *cacert = NULL; #if HAVE_LIBCURL static CURL *curl = NULL; @@ -78,9 +79,10 @@ static char *config_keys[] = "URL", "User", "Password", + "CACert", NULL }; -static int config_keys_num = 3; +static int config_keys_num = 4; #if HAVE_LIBCURL static size_t apache_curl_callback (void *buf, size_t size, size_t nmemb, void *stream) @@ -125,6 +127,8 @@ static int config (char *key, char *value) return (config_set (&user, value)); else if (strcasecmp (key, "password") == 0) return (config_set (&pass, value)); + else if (strcasecmp (key, "cacert") == 0) + return (config_set (&cacert, value)); else return (-1); } @@ -164,6 +168,11 @@ static void init (void) { curl_easy_setopt (curl, CURLOPT_URL, url); } + + if (cacert != NULL) + { + curl_easy_setopt (curl, CURLOPT_CAINFO, cacert); + } #endif /* HAVE_LIBCURL */ } -- 2.30.2