summaryrefslogtreecommitdiffstats
path: root/plugins/check_ntp_time.d/config.h
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-07-06 23:41:07 +0200
committerLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-07-06 23:41:07 +0200
commit6a7c0d067f9be08ea64d456d570bde02bd6d6c1c (patch)
treee6eb03fac46c10a790af603178dc36f25c305ae5 /plugins/check_ntp_time.d/config.h
parent9a520acdf4c39f8906046ab239d3e83959cd5350 (diff)
parent55c0bb748ec04354a5d63e95b3703fcec2cbd588 (diff)
downloadmonitoring-plugins-6a7c0d067f9be08ea64d456d570bde02bd6d6c1c.tar.gz
Merge branch 'master' into refactor/check_curl
Diffstat (limited to 'plugins/check_ntp_time.d/config.h')
-rw-r--r--plugins/check_ntp_time.d/config.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/plugins/check_ntp_time.d/config.h b/plugins/check_ntp_time.d/config.h
new file mode 100644
index 00000000..99dabbbd
--- /dev/null
+++ b/plugins/check_ntp_time.d/config.h
@@ -0,0 +1,28 @@
1#pragma once
2
3#include "../../config.h"
4#include "thresholds.h"
5#include <stddef.h>
6
7typedef struct {
8 char *server_address;
9 char *port;
10
11 bool quiet;
12 int time_offset;
13
14 thresholds *offset_thresholds;
15} check_ntp_time_config;
16
17check_ntp_time_config check_ntp_time_config_init() {
18 check_ntp_time_config tmp = {
19 .server_address = NULL,
20 .port = "123",
21
22 .quiet = false,
23 .time_offset = 0,
24
25 .offset_thresholds = NULL,
26 };
27 return tmp;
28}