summaryrefslogtreecommitdiffstats
path: root/plugins
AgeCommit message (Collapse)AuthorFilesLines
2024-10-31check_hpjd: clang-formatRincewindsHat1-230/+179
2024-10-31check_game: linter fixesRincewindsHat1-2/+3
2024-10-31check_game: do not export local symbolsRincewindsHat1-12/+12
2024-10-31check_game: update copyrightRincewindsHat1-2/+2
2024-10-31check_game: clang-formatRincewindsHat1-284/+256
2024-10-31check_fping: Linter fixesRincewindsHat1-1/+1
2024-10-31check_fping: do not export local symbolsRincewindsHat1-21/+21
2024-10-31check_fping: update copyrightRincewindsHat1-2/+2
2024-10-31check_fping: clang-formatRincewindsHat1-460/+421
2024-10-31check_dummy: do not export local symbolsRincewindsHat1-1/+1
2024-10-31check_dummy: update copyrightRincewindsHat1-2/+2
2024-10-31check_dummy: clang-formatRincewindsHat1-103/+90
2024-10-31check_dns: update copyrightRincewindsHat1-2/+2
2024-10-31check_dns: Linter fixesRincewindsHat1-8/+12
2024-10-31check_dns: do not export local variablesRincewindsHat1-17/+17
2024-10-31check_dns: clang-formatRincewindsHat1-558/+509
2024-10-31check_disk: Linter fixesRincewindsHat1-13/+19
2024-10-31check_dig: Update copyrightRincewindsHat1-2/+2
2024-10-31check_disk: Update copyrightRincewindsHat1-2/+2
2024-10-31check_disk: clang-formatRincewindsHat1-1001/+962
2024-10-31check_dig: Linter fixesRincewindsHat1-3/+3
2024-10-31check_dig: do not export local symbolsRincewindsHat1-15/+15
2024-10-31check_dig: clang-formatRincewindsHat1-325/+297
2024-10-31check_dbi: linter fixesRincewindsHat1-6/+11
2024-10-31check_dbi: do not export local symbolsRincewindsHat1-22/+22
2024-10-31check_dbi: Update copyrightRincewindsHat1-3/+3
2024-10-31check_dbi: clang-formatRincewindsHat1-421/+363
2024-10-31check_curl: Linter fixesRincewindsHat1-27/+28
2024-10-31check_curl: do not export local variables and remove unused onesRincewindsHat1-129/+118
2024-10-31check_curl: Update copyrightRincewindsHat1-2/+2
2024-10-31check_curl: clang-formatRincewindsHat1-2260/+2156
2024-10-31check_cluster: linter fixesRincewindsHat1-3/+5
2024-10-31check_cluster: do not export local symbolsRincewindsHat1-15/+15
2024-10-31check_cluster: Copyright updateRincewindsHat1-2/+2
2024-10-31check_cluster: clang-formatRincewindsHat1-135/+112
2024-10-31check_by_ssh: linter fixesRincewindsHat1-10/+11
2024-10-31check_by_ssh: do not export local symbolsRincewindsHat1-19/+19
2024-10-31check_by_ssh: Copyright updateRincewindsHat1-2/+2
2024-10-31check_by_ssh: clang-formatRincewindsHat1-254/+227
2024-10-25check_ups: clang-format againrefs/pull/2030/headRincewindsHat1-105/+39
2024-10-18check_ups: clang-format againRincewindsHat1-39/+105
2024-10-15check_ups: Update copyrightRincewindsHat1-2/+2
2024-10-15check_ups: clang-formatRincewindsHat1-71/+31
2024-10-10fix check_curl: OpenSSL SSL_read: error:0A000126:SSL routines::unexpected ↵Sven Nierlein1-7/+22
eof while reading, errno 0 using check_curl on a probably embedded device responding as 'Server: GoAhead-Webs' %> check_curl -H ... -S -vvv > GET / HTTP/1.1 Host: ... User-Agent: check_curl/v2.4.0 (monitoring-plugins 2.4.0, libcurl/7.76.1 OpenSSL/3.0.7 zlib/1.2.11 brotli/1.0.9 libidn2/2.3.0 libpsl/0.21.1 (+libidn2/2.3.0) libssh/0.10.4/openssl/zlib nghttp2/1.43.0) Accept: */* Connection: close * Mark bundle as not supporting multiuse * HTTP 1.0, assume close after body < HTTP/1.0 302 Redirect < Server: GoAhead-Webs < Date: Tue Mar 26 17:57:16 2019 < Cache-Control: no-cache, no-store, must-revalidate,private < Pragma: no-cache < Expires: 0 < Content-Type: text/html < X-Frame-Options: sameorigin < X-XSS-Protection: 1; mode=block < X-Content-Type-Options: nosniff < Location: https://... < * OpenSSL SSL_read: error:0A000126:SSL routines::unexpected eof while reading, errno 0 * Closing connection 0 reading the discussion on https://github.com/openssl/openssl/discussions/22690 suggest to set the option SSL_OP_IGNORE_UNEXPECTED_EOF which makes check_curl behave like check_http at this point. Since this is a rather new flag, fencing it in ifdefs. And since there can only be one ssl ctx function, we need to move both tasks into one function.
2024-10-06Merge branch 'master' into check_curl_regex_staterefs/pull/2014/headLorenz Kästle4-139/+122
2024-09-27Merge pull request #2021 from monitoring-plugins/check_disk_static_fixesLorenz Kästle1-49/+34
Check disk static fixes
2024-09-27check_disk: remove unused variables and functionsrefs/pull/2021/headLorenz Kästle1-15/+0
2024-09-27check_disk: Declare global variables staticLorenz Kästle1-37/+37
Variables only used in that specific translation unit should be static to actually communicate that fact. Also allows the compiler to detect unused (global) variables.
2024-09-27check_snmp: Remove unused PP-macrosrefs/pull/2020/headRincewindsHat1-2/+0
2024-09-27check_snmp: Declare most variables as staticRincewindsHat1-78/+78