diff options
| author | M. Sean Finney <seanius@users.sourceforge.net> | 2005-10-24 11:10:29 +0000 |
|---|---|---|
| committer | M. Sean Finney <seanius@users.sourceforge.net> | 2005-10-24 11:10:29 +0000 |
| commit | ceebd58040b1688749d58dd76963af639cf8c803 (patch) | |
| tree | 972deca448413addc597ce7ba3a1a4edefa8c5a5 /plugins/netutils.c | |
| parent | 19100c883d72e6ebfd3f15b3171ade2a78345c73 (diff) | |
| download | monitoring-plugins-ceebd58040b1688749d58dd76963af639cf8c803.tar.gz | |
initial merging of ae's np_runcmd code into selected plugins.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1260 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/netutils.c')
| -rw-r--r-- | plugins/netutils.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/netutils.c b/plugins/netutils.c index db64ef09..08245276 100644 --- a/plugins/netutils.c +++ b/plugins/netutils.c | |||
| @@ -291,6 +291,13 @@ is_host (const char *address) | |||
| 291 | return (FALSE); | 291 | return (FALSE); |
| 292 | } | 292 | } |
| 293 | 293 | ||
| 294 | void | ||
| 295 | host_or_die(const char *str) | ||
| 296 | { | ||
| 297 | if(!str || (!is_addr(str) && !is_hostname(str))) | ||
| 298 | usage_va(_("Invalid hostname/address - %s"), str); | ||
| 299 | } | ||
| 300 | |||
| 294 | int | 301 | int |
| 295 | is_addr (const char *address) | 302 | is_addr (const char *address) |
| 296 | { | 303 | { |
