summaryrefslogtreecommitdiffstats
path: root/plugins/check_hpjd.d/config.h
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-03-11 11:07:26 +0100
committerLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-03-11 11:07:26 +0100
commita2ce9e962d52ebaffc275379c82ce29229a1fba8 (patch)
treed8524a6786ab459787f62b66b5e94fb59e7bb32c /plugins/check_hpjd.d/config.h
parente001fe5b3e50461b79b7b5ea3180cd11507fd615 (diff)
downloadmonitoring-plugins-a2ce9e962d52ebaffc275379c82ce29229a1fba8.tar.gz
Refactor check_hpjd
Diffstat (limited to 'plugins/check_hpjd.d/config.h')
-rw-r--r--plugins/check_hpjd.d/config.h25
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
9typedef struct {
10 char *address;
11 char *community;
12 unsigned int port;
13 bool check_paper_out;
14
15} check_hpjd_config;
16
17check_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}