summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Nierlein <sven@nierlein.de>2017-05-28 08:49:53 (GMT)
committerSven Nierlein <sven@nierlein.de>2017-05-28 08:49:53 (GMT)
commit98989f9fe8756fadf034f2ff51e98f4f37a46161 (patch)
treeb423d31126089715d150ae39d5c340d2840c0025
parentb5ae9fe9813a1b569014efaa4068a93d1022c9a5 (diff)
downloadmonitoring-plugins-98989f9.tar.gz
check_curl: add legacy http request support
-rw-r--r--plugins/check_curl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c
index e7e05a5..da48750 100644
--- a/plugins/check_curl.c
+++ b/plugins/check_curl.c
@@ -372,14 +372,14 @@ check_http (void)
372#endif /* LIBCURL_VERSION_NUM >= MAKE_LIBCURL_VERSION(7, 21, 3) */ 372#endif /* LIBCURL_VERSION_NUM >= MAKE_LIBCURL_VERSION(7, 21, 3) */
373 373
374 /* extract proxy information for legacy proxy https requests */ 374 /* extract proxy information for legacy proxy https requests */
375 if (!strcmp(http_method, "CONNECT")) { 375 if (!strcmp(http_method, "CONNECT") || strstr(server_url, "http") == server_url) {
376 handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_PROXY, server_address), "CURLOPT_PROXY"); 376 handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_PROXY, server_address), "CURLOPT_PROXY");
377 handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_PROXYPORT, (long)server_port), "CURLOPT_PROXYPORT"); 377 handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_PROXYPORT, (long)server_port), "CURLOPT_PROXYPORT");
378 if (verbose>=2) 378 if (verbose>=2)
379 printf ("* curl CURLOPT_PROXY: %s:%d\n", server_address, server_port); 379 printf ("* curl CURLOPT_PROXY: %s:%d\n", server_address, server_port);
380 http_method = "GET"; 380 http_method = "GET";
381 handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_URL, server_url), "CURLOPT_URL"); 381 handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_URL, server_url), "CURLOPT_URL");
382 //server_port = use_ssl ? HTTPS_PORT : HTTP_PORT; 382 virtual_port = use_ssl ? HTTPS_PORT : HTTP_PORT;
383 } else { 383 } else {
384 /* set port */ 384 /* set port */
385 handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_PORT, server_port), "CURLOPT_PORT"); 385 handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_PORT, server_port), "CURLOPT_PORT");