Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-12-20 | Fix for SSL Versioning when multiple options are used. | Joseph Gooch | 1 | -4/+4 | |
If you specify -S1 -C 30... The -C option will reset the ssl_version to 0. This is not a good thing. Instead we set the default to 0 and retain the version when later args are passed. | |||||
2013-12-05 | check_http: Don't let "-N" expect an argument | Holger Weiss | 1 | -1/+1 | |
Fix the problem that check_http's "-N" option expects an argument although it shouldn't. The corresponding long option ("--no-body") wasn't affected. This error was introduced in ee3c4014d511e105489b081390636cacd4c53e3f. Thanks to Kerry Hughes for reporting it on the devel@ list. | |||||
2013-10-28 | Update URLs and mailing list addresses | Holger Weiss | 1 | -1/+1 | |
Now that we moved our infrastructure away from SourceForge, update the URLs and mailing list addresses accordingly. | |||||
2013-09-26 | Die on SSL initialization errors | awiddersheim | 1 | -1/+1 | |
Fixes issue where if an SSL initialization error occurs on a redirect using -f follow the plugin still returns an OK state. Closes #1159. | |||||
2013-09-10 | Fix GCC's -Wuninitialized warnings | Holger Weiss | 1 | -12/+12 | |
Fix the issues found by GCC when the -Wuninitialized flag is specified. | |||||
2013-09-09 | s/--proxy_authorization/--proxy-authorization/ | Holger Weiss | 1 | -1/+1 | |
The check_http option "--proxy_authorization" is now called "--proxy-authorization" instead. It was always documented this way, and we don't usually use underscores in option names. | |||||
2013-08-18 | check_http: Document the new -E option | Holger Weiss | 1 | -1/+3 | |
Mention the -E/--extended-perfdata flag in the --help output. | |||||
2013-08-18 | Abbreviate function name | Holger Weiss | 1 | -1/+1 | |
Make a very long function name at least a little bit shorter. | |||||
2013-08-18 | Merge branch 'master' of https://github.com/cern-mig/nagios-plugins | Holger Weiss | 1 | -5/+40 | |
* 'master' of https://github.com/cern-mig/nagios-plugins: added support for client authentication via SSL Conflicts: plugins/check_http.c | |||||
2013-08-18 | check_http: Use xasprintf instead of asprintf | Holger Weiss | 1 | -1/+1 | |
2013-08-18 | check_http: s/--header_string/--header-string/ | Holger Weiss | 1 | -1/+1 | |
The name of the new option is "--header-string". | |||||
2013-08-18 | added ability to check regex against http headers. booyah! | linkslice | 1 | -2/+22 | |
2013-08-15 | cleanup after check_http patch (fixes #50) | Sven Nierlein | 1 | -28/+28 | |
- cleanup whitespace - added test cases - print time_ssl only if ssl is in use - updated news and thanks file | |||||
2013-08-15 | log more perfdata in check_http | Sebastian Nohn | 1 | -9/+83 | |
2013-05-29 | Fixed SF.net bug #3571331, check_http converts semicolon to newline in -krefs/pull/52/head | Richard Leitner | 1 | -3/+1 | |
This commit fixes sourceforge.net bug id 3571331. The semicolon was defined as input delimiter for multiple values in the -k arguments. Due to the fact the semicolon is a valid character for HTTP header fields this input delimiter function was removed. It is still possible to pass multiple header fields via multiple -k (like described in helptext). | |||||
2013-05-17 | added support for client authentication via SSLrefs/pull/48/head | Lionel Cons | 1 | -5/+40 | |
2012-08-10 | check_http: Update description of -C option | Holger Weiss | 1 | -1/+1 | |
Mention that the -C option now accepts two comma-separated values. | |||||
2012-08-10 | check_http: Add missing newline to --help output | Holger Weiss | 1 | -3/+3 | |
2012-08-10 | fixing bug in certificate experiation patch checking for bad warning ↵ | William Leibzon | 1 | -1/+1 | |
threshold data | |||||
2012-07-18 | check_http: Fix whitespace issues | Holger Weiss | 1 | -10/+10 | |
In check_http.c, tabs aren't used for indentation. | |||||
2012-07-18 | check_http: Fix compilation without SSL support | Holger Weiss | 1 | -3/+4 | |
The "ssl_version" variable was undeclared when the plugins were compiled --without-openssl and --without-gnutls. Bug reported by Michael LaCorte on the "nagiosplug-help" mailing list (Message-ID: <CCD30C91-A2A8-463A-82A9-F99B54F741D3@gmail.com>). | |||||
2012-06-29 | Die when asprintf fails | Anders Kaseorg | 1 | -39/+39 | |
Fixes many instances of warning: ignoring return value of 'asprintf', declared with attribute warn_unused_result [-Wunused-result] Signed-off-by: Anders Kaseorg <andersk@mit.edu> | |||||
2012-06-25 | applied patch that adds both critical and warning thresholds to certificate ↵ | William Leibzon | 1 | -9/+29 | |
expiration checks of check_tcp, check_http, check_smtp | |||||
2012-05-29 | check_http: Fix -C/--certificate option handling | Holger Weiss | 1 | -1/+1 | |
The support for specifying the desired SSL protocol version via an optional -S/--ssl argument broke the -C/--certificate option. This is fixed now. | |||||
2012-05-28 | check_http: Don't ignore SSL initialization errors | Holger Weiss | 1 | -1/+3 | |
SSL initialization errors are now handled properly by check_http (#3095106 - Eric Schoeller). | |||||
2012-05-28 | Add support for specifying SSL protocol version | Holger Weiss | 1 | -7/+16 | |
The check_http -S/--ssl option now takes an optional argument which specifies the desired SSL/TLS protocol version (#3285367 - Jason Lunn). | |||||
2012-02-24 | Clarify that check_http won't verify certificates | Holger Weiss | 1 | -0/+4 | |
Add a note to the --help output which clarifies that check_http doesn't perform certificate verification (beyond what the "-C" option does). (Suggested by Michael Renner in Debian bug report #644627, forwarded by Jan Wagner.) | |||||
2011-01-01 | Make check_http use standard threshold functions | Thomas Guyot-Sionnest | 1 | -30/+18 | |
This enables floating point and ranges, and make the code more standard. | |||||
2010-08-31 | Fix typos in -f help text | Ton Voon | 1 | -1/+1 | |
2010-06-23 | Display missing search string and URL when failed (Duncan Ferguson #2999924) | tonvoon | 1 | -1/+6 | |
2010-04-22 | Add newline after "Usage:" in --help | Thomas Guyot-Sionnest | 1 | -1/+1 | |
2010-04-22 | Standardize the extra-opts notes | Thomas Guyot-Sionnest | 1 | -2/+0 | |
2010-04-14 | Fix translations when extra-opts aren't enabled | Thomas Guyot-Sionnest | 1 | -8/+8 | |
Bug #2832884 reported problem with translations outputting pot file headers. This is caused by "" matching the header of the translation files. This patch moves gettext macros inside utils macros and update some french translations. | |||||
2010-04-11 | Fix Debian bug #460097: check_http -M broken | Holger Weiss | 1 | -1/+4 | |
See: http://bugs.debian.org/460097 One instance of this bug has already been fixed in commit 888358122004b9571c8fbdfa52ceee1ba5e5f4f2. (Fixed by Hilko Bengen, forwarded by Jan Wagner.) | |||||
2010-04-06 | Fix regression in check_http ssl checks on some servers | Thomas Guyot-Sionnest | 1 | -3/+12 | |
The fix is making SNI an option. | |||||
2010-02-26 | Fix memory leak in check_http for large pages (Jimmy Bergman - #2957455) | Ton Voon | 1 | -1/+4 | |
2009-12-03 | Fix short help using "warn" for the -f option instead of "warning" (onredirect). | Thomas Guyot-Sionnest | 1 | -2/+2 | |
2009-09-22 | Add proxy-authorization option to check_http (Peter Doherty - #2863772, ↵ | Thomas Guyot-Sionnest | 1 | -2/+16 | |
Bryan Irvine - #2863925) | |||||
2009-05-20 | check_http: Add SSL/TLS hostname extension support (SNI) - (#1939022 - Joe ↵ | Thomas Guyot-Sionnest | 1 | -1/+1 | |
Presbrey) | |||||
2009-03-21 | Update check_http short help with new stycky and stickyport options. | Thomas Guyot-Sionnest | 1 | -4/+4 | |
2009-03-21 | check_http: die when an invalid --onredirect option is specified | Thomas Guyot-Sionnest | 1 | -6/+7 | |
2009-03-21 | check_http: add --onredirect=stickyport - also follow the same port | Thomas Guyot-Sionnest | 1 | -7/+15 | |
2009-03-19 | Fixed check_http not timing-out on redirects | Thomas Guyot-Sionnest thomas@aei.ca | 1 | -3/+3 | |
2009-03-17 | Fix check_http sending HTTP/1.0 with v1.1 headers (#2638765) | Thomas Guyot-Sionnest | 1 | -1/+1 | |
2009-03-16 | check_http fixes: | Thomas Guyot-Sionnest | 1 | -3/+3 | |
- Fix broken printf on 500 errors - Add bytes to normal output (accidentally removed in 0d78171) | |||||
2009-02-20 | Typo fixes (Jan Wagner - SF 1878971) | Ton Voon | 1 | -3/+3 | |
2009-02-05 | check_http --onredirect=sticky follows using the same IP address (sf.net ↵ | Thomas Guyot-Sionnest | 1 | -5/+11 | |
#2550208). | |||||
2009-02-03 | Fix aberrant behaviours in check_http: | Thomas Guyot-Sionnest | 1 | -105/+97 | |
check_http used to ignore many parameters with check combinations - sometimes even time thresholds(!!) With this commit as long as a response is received *all* checks are performed on it. This fixes #1460312 plus a number of other issues I discovered over time. | |||||
2008-11-23 | Removing CVS/SVN tags and replacing with git-based versioning | Thomas Guyot-Sionnest | 1 | -8/+4 | |
For contrib/, full tags have been imported from subversion git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2091 f882894a-f735-0410-b71e-b25c423dba1c | |||||
2008-11-19 | Bulk EOL cleanup | Thomas Guyot-Sionnest | 1 | -11/+11 | |
$ git diff --ignore-space-change|diffstat 0 files changed git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2087 f882894a-f735-0410-b71e-b25c423dba1c |