diff options
Diffstat (limited to 'lib/utils_base.h')
| -rw-r--r-- | lib/utils_base.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/lib/utils_base.h b/lib/utils_base.h index 49e40a63..0cb371fd 100644 --- a/lib/utils_base.h +++ b/lib/utils_base.h | |||
| @@ -2,6 +2,8 @@ | |||
| 2 | #define _UTILS_BASE_ | 2 | #define _UTILS_BASE_ |
| 3 | /* Header file for nagios plugins utils_base.c */ | 3 | /* Header file for nagios plugins utils_base.c */ |
| 4 | 4 | ||
| 5 | #include "sha1.h" | ||
| 6 | |||
| 5 | /* This file holds header information for thresholds - use this in preference to | 7 | /* This file holds header information for thresholds - use this in preference to |
| 6 | individual plugin logic */ | 8 | individual plugin logic */ |
| 7 | 9 | ||
| @@ -28,6 +30,30 @@ typedef struct thresholds_struct { | |||
| 28 | range *critical; | 30 | range *critical; |
| 29 | } thresholds; | 31 | } thresholds; |
| 30 | 32 | ||
| 33 | #define NP_STATE_FORMAT_VERSION 1 | ||
| 34 | |||
| 35 | typedef struct state_data_struct { | ||
| 36 | time_t time; | ||
| 37 | void *data; | ||
| 38 | int length; /* Of binary data */ | ||
| 39 | } state_data; | ||
| 40 | |||
| 41 | |||
| 42 | typedef struct state_key_struct { | ||
| 43 | char *name; | ||
| 44 | char *plugin_name; | ||
| 45 | int data_version; | ||
| 46 | char *_filename; | ||
| 47 | state_data *state_data; | ||
| 48 | } state_key; | ||
| 49 | |||
| 50 | typedef struct np_struct { | ||
| 51 | char *plugin_name; | ||
| 52 | state_key *state; | ||
| 53 | int argc; | ||
| 54 | char **argv; | ||
| 55 | } nagios_plugin; | ||
| 56 | |||
| 31 | range *parse_range_string (char *); | 57 | range *parse_range_string (char *); |
| 32 | int _set_thresholds(thresholds **, char *, char *); | 58 | int _set_thresholds(thresholds **, char *, char *); |
| 33 | void set_thresholds(thresholds **, char *, char *); | 59 | void set_thresholds(thresholds **, char *, char *); |
| @@ -67,4 +93,13 @@ char *np_extract_value(const char*, const char*, char); | |||
| 67 | */ | 93 | */ |
| 68 | #define np_extract_ntpvar(l, n) np_extract_value(l, n, ',') | 94 | #define np_extract_ntpvar(l, n) np_extract_value(l, n, ',') |
| 69 | 95 | ||
| 96 | |||
| 97 | void np_enable_state(char *, int); | ||
| 98 | state_data *np_state_read(); | ||
| 99 | void np_state_write_string(time_t, char *); | ||
| 100 | |||
| 101 | void np_init(char *, int argc, char **argv); | ||
| 102 | void np_set_args(int argc, char **argv); | ||
| 103 | void np_cleanup(); | ||
| 104 | |||
| 70 | #endif /* _UTILS_BASE_ */ | 105 | #endif /* _UTILS_BASE_ */ |
