diff options
| author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-11 12:04:40 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-11 12:04:40 +0100 |
| commit | b8460603aaa0d707015733ee0d7d40b1949d40b9 (patch) | |
| tree | c81e165e03a601c6976a11e25ef7797b791ab438 /plugins/check_hpjd.d | |
| parent | 7acfac740975f633ae83883535590dffb2650c88 (diff) | |
| parent | abd6295439dac66ca4d5dd280d4a6528cdfe973d (diff) | |
| download | monitoring-plugins-b8460603aaa0d707015733ee0d7d40b1949d40b9.tar.gz | |
Merge branch 'master' into refactor/check_fping
Diffstat (limited to 'plugins/check_hpjd.d')
| -rw-r--r-- | plugins/check_hpjd.d/config.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/plugins/check_hpjd.d/config.h b/plugins/check_hpjd.d/config.h new file mode 100644 index 00000000..e36b7972 --- /dev/null +++ b/plugins/check_hpjd.d/config.h | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | #include "../../config.h" | ||
| 4 | #include <stddef.h> | ||
| 5 | #include <stdlib.h> | ||
| 6 | |||
| 7 | #define DEFAULT_PORT "161" | ||
| 8 | |||
| 9 | typedef struct { | ||
| 10 | char *address; | ||
| 11 | char *community; | ||
| 12 | unsigned int port; | ||
| 13 | bool check_paper_out; | ||
| 14 | |||
| 15 | } check_hpjd_config; | ||
| 16 | |||
| 17 | check_hpjd_config check_hpjd_config_init() { | ||
| 18 | check_hpjd_config tmp = { | ||
| 19 | .address = NULL, | ||
| 20 | .community = NULL, | ||
| 21 | .port = (unsigned int)atoi(DEFAULT_PORT), | ||
| 22 | .check_paper_out = true, | ||
| 23 | }; | ||
| 24 | return tmp; | ||
| 25 | } | ||
