diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-10 09:58:27 +0100 |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-10 09:58:27 +0100 |
commit | 3cadfa2dbe440c4a07d785c72bb7994be0b0a313 (patch) | |
tree | ba0e683fba6b61b28ae6b5170c9a616d39f2681c /plugins/check_game.d/config.h | |
parent | c5f873aa7b74c26c985a81bc4ffeb8d5fd1ce8a9 (diff) | |
parent | 0f0290a52f70d132e09e5b373e2c75b4524d393b (diff) | |
download | monitoring-plugins-3cadfa2dbe440c4a07d785c72bb7994be0b0a313.tar.gz |
Merge branch 'master' into refactor/check_smtp
Diffstat (limited to 'plugins/check_game.d/config.h')
-rw-r--r-- | plugins/check_game.d/config.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/plugins/check_game.d/config.h b/plugins/check_game.d/config.h new file mode 100644 index 00000000..c95a1ced --- /dev/null +++ b/plugins/check_game.d/config.h | |||
@@ -0,0 +1,30 @@ | |||
1 | #pragma once | ||
2 | #include "../../config.h" | ||
3 | #include <stddef.h> | ||
4 | |||
5 | typedef struct { | ||
6 | char *server_ip; | ||
7 | char *game_type; | ||
8 | int port; | ||
9 | |||
10 | int qstat_game_players_max; | ||
11 | int qstat_game_players; | ||
12 | int qstat_game_field; | ||
13 | int qstat_map_field; | ||
14 | int qstat_ping_field; | ||
15 | } check_game_config; | ||
16 | |||
17 | check_game_config check_game_config_init() { | ||
18 | check_game_config tmp = { | ||
19 | .server_ip = NULL, | ||
20 | .game_type = NULL, | ||
21 | .port = 0, | ||
22 | |||
23 | .qstat_game_players_max = 4, | ||
24 | .qstat_game_players = 5, | ||
25 | .qstat_map_field = 3, | ||
26 | .qstat_game_field = 2, | ||
27 | .qstat_ping_field = 5, | ||
28 | }; | ||
29 | return tmp; | ||
30 | } | ||