X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=plugins%2Fcheck_real.c;h=eb892c77fc594d8efbb911cbdffca387c0a934b1;hb=3982b98ba2db3ebebf65d7f0f4ad83a55a3efc49;hp=3e8475a7f729535dd5fff5391241b3e2ca437223;hpb=f4f92be60c94fd4e0dd4b2b4b3101543eedb706a;p=nagiosplug.git diff --git a/plugins/check_real.c b/plugins/check_real.c index 3e8475a..eb892c7 100644 --- a/plugins/check_real.c +++ b/plugins/check_real.c @@ -14,11 +14,13 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + $Id$ + ******************************************************************************/ const char *progname = "check_real"; const char *revision = "$Revision$"; -const char *copyright = "2000-2003"; +const char *copyright = "2000-2004"; const char *email = "nagiosplug-devel@lists.sourceforge.net"; #include "common.h" @@ -50,19 +52,20 @@ int verbose = FALSE; - - - int main (int argc, char **argv) { int sd; - int result; + int result = STATE_UNKNOWN; char buffer[MAX_INPUT_BUFFER]; char *status_line = NULL; - if (process_arguments (argc, argv) != OK) - usage (_("Invalid command arguments supplied\n")); + setlocale (LC_ALL, ""); + bindtextdomain (PACKAGE, LOCALEDIR); + textdomain (PACKAGE); + + if (process_arguments (argc, argv) == ERROR) + usage4 (_("Could not parse arguments")); /* initialize alarm signal handling */ signal (SIGALRM, socket_timeout_alarm_handler); @@ -247,9 +250,6 @@ main (int argc, char **argv) - - - /* process command-line arguments */ int process_arguments (int argc, char **argv) @@ -299,7 +299,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; @@ -312,7 +312,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 */ @@ -321,7 +321,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 */ @@ -330,7 +330,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 */ @@ -341,17 +341,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, revision); exit (STATE_OK); case 'h': /* help */ print_help (); exit (STATE_OK); case '?': /* usage */ - usage (_("Invalid argument\n")); + usage2 (_("Unknown argument"), optarg); } } @@ -361,12 +361,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); @@ -379,8 +379,6 @@ process_arguments (int argc, char **argv) - - int validate_arguments (void) { @@ -389,18 +387,16 @@ validate_arguments (void) - - void print_help (void) { char *myport; asprintf (&myport, "%d", PORT); - print_revision (progname, "$Revision$"); + print_revision (progname, revision); - printf (_("Copyright (c) 1999 Pedro Leite \n")); - printf (_(COPYRIGHT), copyright, email); + printf ("Copyright (c) 1999 Pedro Leite \n"); + printf (COPYRIGHT, copyright, email); printf (_("This plugin tests the REAL service on the specified host.\n\n")); @@ -435,13 +431,10 @@ values.")); - - 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); + [-t timeout] [-v]\n", progname); }