X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=plugins%2Fcheck_time.c;h=ff94d9b3a3a94bcb4f0ed763ad645e10149d2110;hb=f573447d1f6dbf25b58bbfea81226a2ae3736555;hp=042a7d5a5541e466c874f260159d7db029d31cac;hpb=df1bd0c89ff63de64ee630e0025389651947020c;p=nagiosplug.git diff --git a/plugins/check_time.c b/plugins/check_time.c index 042a7d5..ff94d9b 100644 --- a/plugins/check_time.c +++ b/plugins/check_time.c @@ -18,22 +18,22 @@ ******************************************************************************/ -#include "common.h" -#include "netutils.h" -#include "utils.h" - const char *progname = "check_time"; const char *revision = "$Revision$"; -const char *copyright = "1999-2003"; +const char *copyright = "1999-2004"; const char *email = "nagiosplug-devel@lists.sourceforge.net"; +#include "common.h" +#include "netutils.h" +#include "utils.h" + enum { TIME_PORT = 37 }; #define UNIX_EPOCH 2208988800UL -unsigned long server_time, raw_server_time; +uint32_t server_time, raw_server_time; time_t diff_time; int warning_time = 0; int check_warning_time = FALSE; @@ -55,15 +55,15 @@ int main (int argc, char **argv) { int sd; - int result; + int result = STATE_UNKNOWN; time_t conntime; setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); - if (process_arguments (argc, argv) != TRUE) - usage (_("check_time: could not parse arguments\n")); + if (process_arguments (argc, argv) == ERROR) + usage4 (_("Could not parse arguments")); /* initialize alarm signal handling */ signal (SIGALRM, socket_timeout_alarm_handler); @@ -216,9 +216,7 @@ process_arguments (int argc, char **argv) switch (c) { case '?': /* print short usage statement if args not parsable */ - printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); - print_usage (); - exit (STATE_UNKNOWN); + usage2 (_("Unknown argument"), optarg); case 'h': /* help */ print_help (); exit (STATE_OK); @@ -241,11 +239,11 @@ process_arguments (int argc, char **argv) check_warning_time = TRUE; } else { - usage (_("Warning thresholds must be a positive integer\n")); + usage4 (_("Warning thresholds must be a positive integer")); } } else { - usage (_("Warning threshold must be a positive integer\n")); + usage4 (_("Warning threshold must be a positive integer")); } break; case 'c': /* critical-variance */ @@ -260,30 +258,30 @@ process_arguments (int argc, char **argv) check_critical_time = TRUE; } else { - usage (_("Critical thresholds must be a positive integer\n")); + usage4 (_("Critical thresholds must be a positive integer")); } } else { - usage (_("Critical threshold must be a positive integer\n")); + usage4 (_("Critical threshold must be a positive integer")); } break; case 'W': /* warning-connect */ if (!is_intnonneg (optarg)) - usage (_("Warning threshold must be a positive integer\n")); + usage4 (_("Warning threshold must be a positive integer")); else warning_time = atoi (optarg); check_warning_time = TRUE; break; case 'C': /* critical-connect */ if (!is_intnonneg (optarg)) - usage (_("Critical threshold must be a positive integer\n")); + usage4 (_("Critical threshold must be a positive integer")); else critical_time = atoi (optarg); check_critical_time = TRUE; break; case 'p': /* port */ if (!is_intnonneg (optarg)) - usage (_("Port must be a positive integer\n")); + usage4 (_("Port must be a positive integer")); else server_port = atoi (optarg); break; @@ -306,7 +304,7 @@ process_arguments (int argc, char **argv) server_address = argv[c]; } else { - usage (_("Hostname was not supplied\n")); + usage4 (_("Hostname was not supplied")); } } @@ -326,8 +324,7 @@ print_help (void) printf ("Copyright (c) 1999 Ethan Galstad\n"); printf (COPYRIGHT, copyright, email); - printf (_("\ -This plugin will check the time on the specified host.\n\n")); + printf (_("This plugin will check the time on the specified host.\n\n")); print_usage (); @@ -357,8 +354,7 @@ This plugin will check the time on the specified host.\n\n")); void print_usage (void) { - printf (_("\ + printf ("\ Usage: %s -H [-p port] [-u] [-w variance] [-c variance]\n\ - [-W connect_time] [-C connect_time] [-t timeout]\n"), progname); - printf (_(UT_HLP_VRS), progname, progname); + [-W connect_time] [-C connect_time] [-t timeout]\n", progname); }