Code

Add newline after "Usage:" in --help
[nagiosplug.git] / plugins / check_real.c
index 05e39d794eb55a0f7c58ad7b43c8dd0053545e6c..d67e190447eb2c4c39b36a5b7857bf2a933b5b71 100644 (file)
@@ -1,24 +1,35 @@
-/******************************************************************************
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-******************************************************************************/
+/*****************************************************************************
+* 
+* Nagios check_real plugin
+* 
+* License: GPL
+* Copyright (c) 2000-2007 Nagios Plugins Development Team
+* 
+* Description:
+* 
+* This file contains the check_real plugin
+* 
+* This plugin tests the REAL service on the specified host.
+* 
+* 
+* This program is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+* 
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+* GNU General Public License for more details.
+* 
+* You should have received a copy of the GNU General Public License
+* along with this program.  If not, see <http://www.gnu.org/licenses/>.
+* 
+* 
+*****************************************************************************/
 
 const char *progname = "check_real";
-const char *revision = "$Revision$";
-const char *copyright = "2000-2003";
+const char *copyright = "2000-2007";
 const char *email = "nagiosplug-devel@lists.sourceforge.net";
 
 #include "common.h"
@@ -50,14 +61,11 @@ int verbose = FALSE;
 
 
 
-
-
-\f
 int
 main (int argc, char **argv)
 {
        int sd;
-       int result;
+       int result = STATE_UNKNOWN;
        char buffer[MAX_INPUT_BUFFER];
        char *status_line = NULL;
 
@@ -65,8 +73,11 @@ main (int argc, char **argv)
        bindtextdomain (PACKAGE, LOCALEDIR);
        textdomain (PACKAGE);
 
-       if (process_arguments (argc, argv) != OK)
-               usage (_("Invalid command arguments supplied\n"));
+       /* Parse extra opts if any */
+       argv=np_extra_opts (&argc, argv, progname);
+
+       if (process_arguments (argc, argv) == ERROR)
+               usage4 (_("Could not parse arguments"));
 
        /* initialize alarm signal handling */
        signal (SIGALRM, socket_timeout_alarm_handler);
@@ -104,7 +115,7 @@ main (int argc, char **argv)
        /* make sure we find the response we are looking for */
        if (!strstr (buffer, server_expect)) {
                if (server_port == PORT)
-                       printf (_("Invalid REAL response received from host\n"));
+                       printf ("%s\n", _("Invalid REAL response received from host"));
                else
                        printf (_("Invalid REAL response received from host on port %d\n"),
                                                        server_port);
@@ -177,7 +188,7 @@ main (int argc, char **argv)
                        /* make sure we find the response we are looking for */
                        if (!strstr (buffer, server_expect)) {
                                if (server_port == PORT)
-                                       printf (_("Invalid REAL response received from host\n"));
+                                       printf ("%s\n", _("Invalid REAL response received from host"));
                                else
                                        printf (_("Invalid REAL response received from host on port %d\n"),
                                                                        server_port);
@@ -251,9 +262,6 @@ main (int argc, char **argv)
 
 
 
-
-
-\f
 /* process command-line arguments */
 int
 process_arguments (int argc, char **argv)
@@ -289,7 +297,7 @@ process_arguments (int argc, char **argv)
        }
 
        while (1) {
-               c = getopt_long (argc, argv, "+hVI:H:e:u:p:w:c:t:", longopts,
+               c = getopt_long (argc, argv, "+hvVI:H:e:u:p:w:c:t:", longopts,
                                                                         &option);
 
                if (c == -1 || c == EOF)
@@ -303,7 +311,7 @@ process_arguments (int argc, char **argv)
                        else if (is_host (optarg))
                                server_address = optarg;
                        else
-                               usage (_("Invalid host name\n"));
+                               usage2 (_("Invalid hostname/address"), optarg);
                        break;
                case 'e':                                                                       /* string to expect in response header */
                        server_expect = optarg;
@@ -316,7 +324,7 @@ process_arguments (int argc, char **argv)
                                server_port = atoi (optarg);
                        }
                        else {
-                               usage (_("Server port must be a positive integer\n"));
+                               usage4 (_("Port must be a positive integer"));
                        }
                        break;
                case 'w':                                                                       /* warning time threshold */
@@ -325,7 +333,7 @@ process_arguments (int argc, char **argv)
                                check_warning_time = TRUE;
                        }
                        else {
-                               usage (_("Warning time must be a nonnegative integer\n"));
+                               usage4 (_("Warning time must be a positive integer"));
                        }
                        break;
                case 'c':                                                                       /* critical time threshold */
@@ -334,7 +342,7 @@ process_arguments (int argc, char **argv)
                                check_critical_time = TRUE;
                        }
                        else {
-                               usage (_("Critical time must be a nonnegative integer\n"));
+                               usage4 (_("Critical time must be a positive integer"));
                        }
                        break;
                case 'v':                                                                       /* verbose */
@@ -345,17 +353,17 @@ process_arguments (int argc, char **argv)
                                socket_timeout = atoi (optarg);
                        }
                        else {
-                               usage (_("Time interval must be a nonnegative integer\n"));
+                               usage4 (_("Timeout interval must be a positive integer"));
                        }
                        break;
                case 'V':                                                                       /* version */
-                       print_revision (progname, "$Revision$");
+                       print_revision (progname, NP_VERSION);
                        exit (STATE_OK);
                case 'h':                                                                       /* help */
                        print_help ();
                        exit (STATE_OK);
                case '?':                                                                       /* usage */
-                       usage (_("Invalid argument\n"));
+                       usage5 ();
                }
        }
 
@@ -365,12 +373,12 @@ process_arguments (int argc, char **argv)
                        server_address = argv[c++];
                }
                else {
-                       usage (_("Invalid host name"));
+                       usage2 (_("Invalid hostname/address"), argv[c]);
                }
        }
 
        if (server_address==NULL)
-               usage (_("You must provide a server to check\n"));
+               usage4 (_("You must provide a server to check"));
 
        if (host_name==NULL)
                host_name = strdup (server_address);
@@ -383,8 +391,6 @@ process_arguments (int argc, char **argv)
 
 
 
-
-
 int
 validate_arguments (void)
 {
@@ -393,59 +399,55 @@ validate_arguments (void)
 
 
 
-
-\f
 void
 print_help (void)
 {
        char *myport;
        asprintf (&myport, "%d", PORT);
 
-       print_revision (progname, "$Revision$");
+       print_revision (progname, NP_VERSION);
 
-       printf (_("Copyright (c) 1999 Pedro Leite <leite@cic.ua.pt>\n"));
-       printf (_(COPYRIGHT), copyright, email);
+       printf ("Copyright (c) 1999 Pedro Leite <leite@cic.ua.pt>\n");
+       printf (COPYRIGHT, copyright, email);
 
-       printf (_("This plugin tests the REAL service on the specified host.\n\n"));
+       printf ("%s\n", _("This plugin tests the REAL service on the specified host."));
+
+  printf ("\n\n");
 
        print_usage ();
 
-       printf (_(UT_HELP_VRSN));
+       printf (UT_HELP_VRSN);
+       printf (UT_EXTRA_OPTS);
 
-       printf (_(UT_HOST_PORT), 'p', myport);
+       printf (UT_HOST_PORT, 'p', myport);
 
-       printf (_("\
- -u, --url=STRING\n\
-   Connect to this url\n\
- -e, --expect=STRING\n\
-   String to expect in first line of server response (default: %s)\n"),
+       printf (" %s\n", "-u, --url=STRING");
+  printf ("    %s\n", _("Connect to this url"));
+  printf (" %s\n", "-e, --expect=STRING");
+  printf (_("String to expect in first line of server response (default: %s)\n"),
               EXPECT);
 
-       printf (_(UT_WARN_CRIT));
+       printf (UT_WARN_CRIT);
 
-       printf (_(UT_TIMEOUT), DEFAULT_SOCKET_TIMEOUT);
+       printf (UT_TIMEOUT, DEFAULT_SOCKET_TIMEOUT);
 
-       printf (_(UT_VERBOSE));
+       printf (UT_VERBOSE);
 
-       printf(_("\
-This plugin will attempt to open an RTSP connection with the host.\n\
-Successul connects return STATE_OK, refusals and timeouts return\n\
-STATE_CRITICAL, other errors return STATE_UNKNOWN.  Successful connects,\n\
-but incorrect reponse messages from the host result in STATE_WARNING return\n\
-values."));
+  printf ("\n");
+       printf ("%s\n", _("This plugin will attempt to open an RTSP connection with the host."));
+  printf ("%s\n", _("Successul connects return STATE_OK, refusals and timeouts return"));
+  printf ("%s\n", _("STATE_CRITICAL, other errors return STATE_UNKNOWN.  Successful connects,"));
+  printf ("%s\n", _("but incorrect reponse messages from the host result in STATE_WARNING return"));
+  printf ("%s\n", _("values."));
 
-       printf (_(UT_SUPPORT));
+       printf (UT_SUPPORT);
 }
 
 
 
-
-
 void
 print_usage (void)
 {
-       printf ("\
-Usage: %s -H host [-e expect] [-p port] [-w warn] [-c crit]\n\
-  [-t timeout] [-v]\n", progname);
-       printf (_(UT_HLP_VRS), progname, progname);
+  printf ("%s\n", _("Usage:"));
+       printf ("%s -H host [-e expect] [-p port] [-w warn] [-c crit] [-t timeout] [-v]\n", progname);
 }