summaryrefslogtreecommitdiffstats
path: root/plugins/utils.h
diff options
context:
space:
mode:
authorTon Voon <tonvoon@users.sourceforge.net>2006-01-30 16:10:50 (GMT)
committerTon Voon <tonvoon@users.sourceforge.net>2006-01-30 16:10:50 (GMT)
commit795100ae5124915bb647a304d5dfe2ada2f44ab0 (patch)
treeb3fd0dc1a88ebb533f074c476ee020e32877632e /plugins/utils.h
parentc8a9bf228fdd34b021796f577a404cb8b0cba1f9 (diff)
downloadmonitoring-plugins-795100ae5124915bb647a304d5dfe2ada2f44ab0.tar.gz
Added libtap tests for utils.c library functions. Removed redundant
test files git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1303 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/utils.h')
-rw-r--r--plugins/utils.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/utils.h b/plugins/utils.h
index 2d97634..f47d053 100644
--- a/plugins/utils.h
+++ b/plugins/utils.h
@@ -58,6 +58,19 @@ struct timeval {
58}; 58};
59#endif 59#endif
60 60
61#define OUTSIDE 0
62#define INSIDE 1
63
64typedef struct threshold_struct {
65 double start;
66 int start_infinity; /* FALSE (default) or TRUE */
67 double end;
68 int end_infinity;
69 int alert_on; /* OUTSIDE (default) or INSIDE */
70 } threshold;
71
72threshold *parse_threshold (char *);
73
61#ifndef HAVE_GETTIMEOFDAY 74#ifndef HAVE_GETTIMEOFDAY
62int gettimeofday(struct timeval *, struct timezone *); 75int gettimeofday(struct timeval *, struct timezone *);
63#endif 76#endif