From b86bace98ed84c0b97a7dafa12fc4c07f3a7e9fe Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Thu, 9 Oct 2008 19:22:45 +0000 Subject: - added user agent --- src/check_curl.c | 5 +++++ src/check_curl.ggo | 5 +++++ 2 files changed, 10 insertions(+) (limited to 'src') diff --git a/src/check_curl.c b/src/check_curl.c index f95547b..011c8ee 100644 --- a/src/check_curl.c +++ b/src/check_curl.c @@ -28,6 +28,7 @@ #include "common.h" #include "curlhelper.h" +#include "utils.h" #define DEFAULT_TIMEOUT (double)10.0 @@ -120,6 +121,10 @@ int main( int argc, char *argv[] ) { if( args_info.authorization_given ) curl_easy_setopt( curl, CURLOPT_USERPWD, args_info.authorization_arg ); + /* user agent */ + if( args_info.useragent_given ) + curl_easy_setopt( curl, CURLOPT_USERAGENT, args_info.useragent_arg ); + /* compose URL */ snprintf( b, 2048, "http%s://%s%s", args_info.ssl_given ? "s" : "", diff --git a/src/check_curl.ggo b/src/check_curl.ggo index f0b8eaa..2654c54 100644 --- a/src/check_curl.ggo +++ b/src/check_curl.ggo @@ -88,3 +88,8 @@ option "string" s "String to expect in the content" option "ssl" S "Connect via SSL. Port defaults to 443" optional + +option "useragent" A "String to be sent in http header as \"User Agent\"" + string + typestr="STRING" + optional -- cgit v1.2.3-54-g00ecf