diff options
author | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-01 23:54:51 +0000 |
---|---|---|
committer | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-01 23:54:51 +0000 |
commit | d19edd4043c498626fe68308005947975ef0a697 (patch) | |
tree | 7a213ee16f9331e928b1c32aa6c521c05519db58 /plugins/check_ping.c | |
parent | 1d8128e328f714258b7fec0c62245e1d187e0439 (diff) | |
download | monitoring-plugins-d19edd4043c498626fe68308005947975ef0a697.tar.gz |
standardize localization string
standardize unknow arguments
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@969 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_ping.c')
-rw-r--r-- | plugins/check_ping.c | 40 |
1 files changed, 18 insertions, 22 deletions
diff --git a/plugins/check_ping.c b/plugins/check_ping.c index 074519d3..260e1b65 100644 --- a/plugins/check_ping.c +++ b/plugins/check_ping.c @@ -14,6 +14,8 @@ 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_ping"; @@ -60,8 +62,6 @@ char *warn_text; - - int main (int argc, char **argv) { @@ -79,7 +79,7 @@ main (int argc, char **argv) addresses[0] = NULL; if (process_arguments (argc, argv) == ERROR) - usage (_("Could not parse arguments")); + usage (_("check_ping: could not parse arguments\n")); /* Set signal handling and alarm */ if (signal (SIGALRM, popen_timeout_alarm_handler) == SIG_ERR) { @@ -159,9 +159,6 @@ main (int argc, char **argv) - - - /* process command-line arguments */ int process_arguments (int argc, char **argv) @@ -198,8 +195,9 @@ process_arguments (int argc, char **argv) switch (c) { case '?': /* usage */ - usage3 (_("Unknown argument"), optopt); - break; + printf (_("%s: Unknown argument: %s\n\n"), progname, optarg); + print_usage (); + exit (STATE_UNKNOWN); case 'h': /* help */ print_help (); exit (STATE_OK); @@ -270,7 +268,7 @@ process_arguments (int argc, char **argv) if (addresses[0] == NULL) { if (is_host (argv[c]) == FALSE) { - usage2 (_("Invalid host name/address"), argv[c]); + usage2 (_("Invalid hostname/address"), argv[c]); } else { addresses[0] = argv[c++]; n_addresses++; @@ -335,6 +333,8 @@ process_arguments (int argc, char **argv) return validate_arguments (); } + + int get_threshold (char *arg, float *trta, int *tpl) { @@ -349,6 +349,8 @@ get_threshold (char *arg, float *trta, int *tpl) return STATE_UNKNOWN; } + + int validate_arguments () { @@ -389,7 +391,7 @@ validate_arguments () for (i=0; i<n_addresses; i++) { if (is_host(addresses[i]) == FALSE) - usage2 (_("Invalid host name/address"), addresses[i]); + usage2 (_("Invalid hostname/address"), addresses[i]); } return OK; @@ -397,9 +399,6 @@ validate_arguments () - - - int run_ping (const char *cmd, const char *addr) { @@ -444,7 +443,7 @@ run_ping (const char *cmd, const char *addr) /* check stderr, setting at least WARNING if there is output here */ while (fgets (buf, MAX_INPUT_BUFFER - 1, child_stderr)) - if (! strstr(buf,"Warning: no SO_TIMESTAMP support, falling back to SIOCGSTAMP")) + if (! strstr(buf,"WARNING - no SO_TIMESTAMP support, falling back to SIOCGSTAMP")) result = max_state (STATE_WARNING, error_scan (buf, addr)); (void) fclose (child_stderr); @@ -462,17 +461,15 @@ run_ping (const char *cmd, const char *addr) - - int error_scan (char buf[MAX_INPUT_BUFFER], const char *addr) { if (strstr (buf, "Network is unreachable")) - die (STATE_CRITICAL, _("PING CRITICAL - Network unreachable (%s)"), addr); + die (STATE_CRITICAL, _("CRITICAL - Network unreachable (%s)"), addr); else if (strstr (buf, "Destination Host Unreachable")) - die (STATE_CRITICAL, _("PING CRITICAL - Host Unreachable (%s)"), addr); + die (STATE_CRITICAL, _("CRITICAL - Host Unreachable (%s)"), addr); else if (strstr (buf, "unknown host" )) - die (STATE_CRITICAL, _("PING CRITICAL - Host not found (%s)"), addr); + die (STATE_CRITICAL, _("CRITICAL - Host not found (%s)"), addr); if (strstr (buf, "(DUP!)") || strstr (buf, "DUPLICATES FOUND")) { if (warn_text == NULL) @@ -488,9 +485,6 @@ error_scan (char buf[MAX_INPUT_BUFFER], const char *addr) - - - void print_usage (void) { @@ -500,6 +494,8 @@ print_usage (void) printf (_(UT_HLP_VRS), progname, progname); } + + void print_help (void) { |