summaryrefslogtreecommitdiffstats
path: root/plugins
AgeCommit message (Collapse)AuthorFilesLines
2017-05-04fixed getopt (-l missing, wrong order, hard to compare with check_http.c)Andreas Baumann1-1/+1
2017-05-04more tolerant CERTINFO parsingAndreas Baumann1-4/+4
2017-04-28using CURLOPT_RESOLVE to make sure -I is the IP we connect toAndreas Baumann1-4/+18
2017-04-28changed URL construction again, IP should preceed hostname, hostname set as ↵Andreas Baumann1-1/+1
Host: (makes sure we get the corrent DNS entry and server)
2017-04-27page length is computed from header, fallback to actual body size ↵Andreas Baumann1-5/+37
(get_content_length)
2017-04-27fixed setting host_name or server_address in curl URL optionAndreas Baumann1-1/+1
2017-04-27Merge branch 'master' into feature_check_curlAndreas Baumann1-1/+1
2017-04-24reverted hostname in URL, must use CURL_RESOLVE mayabeAndreas Baumann1-1/+1
2017-04-24must use host_name and not server_address in URL, CN subject mismatchAndreas Baumann1-2/+2
2017-04-21disable non-OpenSSL code compilation in -C check if we have USE_OPENSSL setAndreas Baumann1-0/+2
2017-04-21made non-OpenSSL version of certificate -C check workAndreas Baumann1-3/+114
2017-04-21handling the -C check now when compiled with OpenSSL but libcurl is not ↵Andreas Baumann1-6/+41
compiled with OpenSSL
2017-04-21preparing for certificate checks (non-OpenSSL version)Andreas Baumann1-22/+39
2017-04-21small cleanupAndreas Baumann1-9/+7
2017-04-20plugins: check_dig: Fix spellingrefs/pull/1485/headKarol Babioch1-1/+1
2017-04-20probing for SSL library used by libcurl and started improving the ↵Andreas Baumann1-39/+147
certificate check -C
2017-04-19using curl_getdate instead of local parse_time_string, added verbose debug ↵Andreas Baumann1-95/+4
code for -M<d>
2017-04-19small fixes and cleanups around SSL, be more tolerant to -S<x> optionsAndreas Baumann1-14/+14
2017-04-19for now we set LIBCURL_USES_OPENSSL alwaysAndreas Baumann1-0/+3
2017-04-19made check_curl compile also if we have openssl disabledAndreas Baumann1-0/+6
2017-04-19fixed some libcurl checks and minimal versionsAndreas Baumann1-12/+8
2017-04-19some work on certificate checking for non-OpenSSL librariesAndreas Baumann1-11/+77
2017-04-18small fix and we see CURLOPT_SSL_CTX_FUNCTION does not work on Centos 6?Andreas Baumann1-1/+1
2017-04-18some cleanup and added error handling around curl_easy_getinfo/curl_easy_setoptAndreas Baumann1-59/+64
2017-04-16fixed test outputs for status line checksAndreas Baumann2-38/+103
handling empty data in POST and PUT handling data upload (from -P <postdata>) also in PUT
2017-04-15added -n and more display_html stuffAndreas Baumann1-3/+9
2017-04-15added -L optionAndreas Baumann1-2/+14
2017-04-15fixed non-C99-ism in get_header_valueAndreas Baumann1-1/+2
2017-04-14added -M<m> age option for document age, using picohttpparser from h2o ↵Andreas Baumann4-7/+911
(maybe handy later to make a more robust header condition checker?)
2017-04-14made check_curl tests copies of check_http tests because they will differ ↵Andreas Baumann2-2/+622
slightly
2017-03-19added POST support (-P/-T options)Andreas Baumann1-5/+33
2017-03-19fixed handling of SSL/TLS protocol versionsAndreas Baumann1-12/+70
2017-03-19added -l option, fixed some usage/helpAndreas Baumann1-4/+11
2017-03-19added -d/--header-string optionAndreas Baumann1-2/+23
2017-03-18check_curl: implement -e/--expectSven Nierlein1-22/+75
2017-03-18check_curl: support check_http arguments for backwards compatibilitySven Nierlein1-0/+14
2017-03-18check_curl: adopt output format from check_httpSven Nierlein1-8/+15
2017-03-18check_curl: make check_curl use the same tests as check_httpSven Nierlein4-236/+43
2017-03-17added -4/-6 optionAndreas Baumann1-2/+25
2017-03-17added -m/--pagesize optionAndreas Baumann1-1/+43
2017-03-17added help for --invert-regexAndreas Baumann1-0/+2
2017-03-17added -R/-ereg/-eregiAndreas Baumann1-2/+8
2017-03-17added -N/--no-body optionAndreas Baumann1-5/+16
2017-03-17added usage and help for -E/--extended-perfdataAndreas Baumann1-1/+3
2017-03-17reverted double header in longoptsAndreas Baumann1-1/+0
2017-03-17added help/usage and getopt long struct member for -k/--header optionAndreas Baumann1-1/+4
2017-03-17fixed a missing else before curl_easy_setopt CURLOPT_CUSTOMREQUESTAndreas Baumann1-1/+2
2017-03-14add check_curl testSven Nierlein1-0/+200
just a copy of check_http for now... Signed-off-by: Sven Nierlein <sven@nierlein.de>
2017-03-14check_curl: set correct host headerSven Nierlein1-11/+31
Signed-off-by: Sven Nierlein <sven@nierlein.de>
2017-03-14check_curl: implement extended performance dataSven Nierlein1-8/+40
Signed-off-by: Sven Nierlein <sven@nierlein.de>