summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1e9a54c)
raw | patch | inline | side by side (parent: 1e9a54c)
author | Marc Fournier <marc.fournier@camptocamp.com> | |
Tue, 10 May 2016 07:21:10 +0000 (09:21 +0200) | ||
committer | Marc Fournier <marc.fournier@camptocamp.com> | |
Tue, 10 May 2016 07:30:05 +0000 (09:30 +0200) |
src/apcups.c | patch | blob | history |
diff --git a/src/apcups.c b/src/apcups.c
index 591f6acd652b092db8a9332acb868d91d5e2f08a..2d1c16bb2424e3aaea49653fc4aba02da700323c 100644 (file)
--- a/src/apcups.c
+++ b/src/apcups.c
# include <netinet/in.h>
#endif
+#ifndef APCUPS_SERVER_TIMEOUT
+# define APCUPS_SERVER_TIMEOUT 15.0
+#endif
+
#ifndef APCUPS_DEFAULT_NODE
# define APCUPS_DEFAULT_NODE "localhost"
#endif
if (!persistent_conn_set) {
double interval = CDTIME_T_TO_DOUBLE(plugin_get_interval());
- if (interval > 15.0) {
+ if (interval > APCUPS_SERVER_TIMEOUT) {
NOTICE ("apcups plugin: Plugin poll interval set to %.3f seconds. "
- "Apcupsd NIS socket timeout is 15 seconds, "
+ "Apcupsd NIS socket timeout is %.3f seconds, "
"PersistentConnection disabled by default.",
- interval);
+ interval, APCUPS_SERVER_TIMEOUT);
conf_persistent_conn = 0;
}
}