diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2006-07-13 12:50:23 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2006-07-13 12:50:23 (GMT) |
commit | 548083b2ea865474915fc8a9ddd361e997585a02 (patch) | |
tree | f3766c1f5d8f8ea1b2b721a5792e4fb4daf1cf68 /plugins/utils_disk.h | |
parent | 6b9cc76d0a27631fbab19a31ab8bd46e143b7580 (diff) | |
download | monitoring-plugins-548083b2ea865474915fc8a9ddd361e997585a02.tar.gz |
Move new util_* functions to lib/
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1451 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/utils_disk.h')
-rw-r--r-- | plugins/utils_disk.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/plugins/utils_disk.h b/plugins/utils_disk.h deleted file mode 100644 index 676ca09..0000000 --- a/plugins/utils_disk.h +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | /* Header file for utils_disk */ | ||
2 | |||
3 | #include "mountlist.h" | ||
4 | |||
5 | struct name_list | ||
6 | { | ||
7 | char *name; | ||
8 | struct name_list *next; | ||
9 | }; | ||
10 | |||
11 | struct parameter_list | ||
12 | { | ||
13 | char *name; | ||
14 | int found; | ||
15 | int found_len; | ||
16 | uintmax_t w_df; | ||
17 | uintmax_t c_df; | ||
18 | double w_dfp; | ||
19 | double c_dfp; | ||
20 | double w_idfp; | ||
21 | double c_idfp; | ||
22 | struct mount_entry *best_match; | ||
23 | struct parameter_list *name_next; | ||
24 | }; | ||
25 | |||
26 | void np_add_name (struct name_list **list, const char *name); | ||
27 | int np_find_name (struct name_list *list, const char *name); | ||
28 | int np_seen_name (struct name_list *list, const char *name); | ||
29 | struct parameter_list *np_add_parameter(struct parameter_list **list, const char *name); | ||
30 | int search_parameter_list (struct parameter_list *list, const char *name); | ||