From 0b6423f9c99d9edf8c96fefd0f6c453859395aa1 Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Mon, 30 Sep 2013 00:03:24 +0200 Subject: Import Nagios Plugins site Import the Nagios Plugins web site, Cronjobs, infrastructure scripts, and configuration files. --- .../154773-nagios_plugins-check_tcp.c.patch | 88 ++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 web/attachments/154773-nagios_plugins-check_tcp.c.patch (limited to 'web/attachments/154773-nagios_plugins-check_tcp.c.patch') diff --git a/web/attachments/154773-nagios_plugins-check_tcp.c.patch b/web/attachments/154773-nagios_plugins-check_tcp.c.patch new file mode 100644 index 0000000..3d547df --- /dev/null +++ b/web/attachments/154773-nagios_plugins-check_tcp.c.patch @@ -0,0 +1,88 @@ +--- ../../original_sources/nagios-plugins-1.4.2/plugins/check_tcp.c 2005-06-05 13:43:58.000000000 -0400 ++++ nagios-plugins-1.4.2/plugins/check_tcp.c 2005-11-02 10:21:56.000000000 -0500 +@@ -78,6 +78,8 @@ + static char *server_address = NULL; + static char *server_send = NULL; + static char *server_quit = NULL; ++static char *lineend = ""; ++static char *lineendquit = "\r\n"; + static char **server_expect; + static size_t server_expect_count = 0; + static size_t maxbytes = 0; +@@ -404,6 +406,7 @@ + {"timeout", required_argument, 0, 't'}, + {"protocol", required_argument, 0, 'P'}, + {"port", required_argument, 0, 'p'}, ++ {"lineend", required_argument, 0, 'l'}, + {"send", required_argument, 0, 's'}, + {"expect", required_argument, 0, 'e'}, + {"maxbytes", required_argument, 0, 'm'}, +@@ -445,7 +448,7 @@ + } + + while (1) { +- c = getopt_long (argc, argv, "+hVv46H:s:e:q:m:c:w:t:p:C:W:d:Sr:jD:M:", ++ c = getopt_long (argc, argv, "+hVv46H:l:s:e:q:m:c:w:t:p:C:W:d:Sr:jD:M:", + longopts, &option); + + if (c == -1 || c == EOF || c == 1) +@@ -515,8 +518,30 @@ + else + server_port = atoi (optarg); + break; ++ case 'l': ++ switch (*optarg) { ++ case 'n': ++ lineend = "\n"; ++ lineendquit = lineend; ++ break; ++ case 'r': ++ lineend = "\r"; ++ lineendquit = lineend; ++ break; ++ case 'b': ++ lineend = "\r\n"; ++ lineendquit = lineend; ++ break; ++ case 'e': ++ lineend = ""; ++ ++ break; ++ default: ++ usage4 (_("Unrecognized option to -l not r, n, b or e.")); ++ } ++ break; + case 's': +- server_send = optarg; ++ asprintf(&server_send, "%s%s", optarg, lineend); + break; + case 'e': /* expect string (may be repeated) */ + EXPECT = NULL; +@@ -533,7 +558,7 @@ + else + maxbytes = strtol (optarg, NULL, 0); + case 'q': +- asprintf(&server_quit, "%s\r\n", optarg); ++ asprintf(&server_quit, "%s%s", optarg, lineendquit); + break; + case 'r': + if (!strncmp(optarg,"ok",2)) +@@ -738,6 +763,10 @@ + printf (_(UT_IPv46)); + + printf (_("\ ++ -l, --lineend=b|e|n|r\n\ ++ Ending on -s nd -q strings. b - both: style, e - empty no\n\ ++ end, n - newline: newline end, r - return: carriage return end\n\ ++ Default is \"-l e -s -l b -q \".\n\ + -s, --send=STRING\n\ + String to send to the server\n\ + -e, --expect=STRING\n\ +@@ -783,6 +812,6 @@ + [-s ] [-e ] [-q ]\n\ + [-m ] [-d ] [-t ]\n\ + [-r ] [-M ] [-v] [-4|-6] [-j]\n\ +- [-D ] [-S ]\n", progname); ++ [-D ] [-S ] [-l ]\n", progname); + } + -- cgit v1.2.3-74-g34f1