diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-07-06 23:41:07 +0200 |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-07-06 23:41:07 +0200 |
commit | 6a7c0d067f9be08ea64d456d570bde02bd6d6c1c (patch) | |
tree | e6eb03fac46c10a790af603178dc36f25c305ae5 /plugins/negate.d/config.h | |
parent | 9a520acdf4c39f8906046ab239d3e83959cd5350 (diff) | |
parent | 55c0bb748ec04354a5d63e95b3703fcec2cbd588 (diff) | |
download | monitoring-plugins-6a7c0d067f9be08ea64d456d570bde02bd6d6c1c.tar.gz |
Merge branch 'master' into refactor/check_curl
Diffstat (limited to 'plugins/negate.d/config.h')
-rw-r--r-- | plugins/negate.d/config.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/plugins/negate.d/config.h b/plugins/negate.d/config.h new file mode 100644 index 00000000..0cf30cd4 --- /dev/null +++ b/plugins/negate.d/config.h | |||
@@ -0,0 +1,24 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include "states.h" | ||
4 | |||
5 | typedef struct { | ||
6 | mp_state_enum state[4]; | ||
7 | bool subst_text; | ||
8 | char **command_line; | ||
9 | } negate_config; | ||
10 | |||
11 | negate_config negate_config_init() { | ||
12 | negate_config tmp = { | ||
13 | .state = | ||
14 | { | ||
15 | STATE_OK, | ||
16 | STATE_WARNING, | ||
17 | STATE_CRITICAL, | ||
18 | STATE_UNKNOWN, | ||
19 | }, | ||
20 | .subst_text = false, | ||
21 | .command_line = NULL, | ||
22 | }; | ||
23 | return tmp; | ||
24 | } | ||