diff options
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2009-03-20 02:19:42 -0400 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2009-03-20 02:19:42 -0400 |
commit | c459ca07706ee315da3eac91344c2f1d9a152685 (patch) | |
tree | d91659325daad0a7580fbbf6ea6719f84fb9ef2f /plugins/utils.h | |
parent | 4142e178403483d6c1a27e765c0a86e77278c2d6 (diff) | |
download | monitoring-plugins-c459ca07706ee315da3eac91344c2f1d9a152685.tar.gz |
Make alarm handler customisable
Diffstat (limited to 'plugins/utils.h')
-rw-r--r-- | plugins/utils.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/utils.h b/plugins/utils.h index 65e06ebd..d6e9c8f7 100644 --- a/plugins/utils.h +++ b/plugins/utils.h @@ -32,9 +32,11 @@ void print_revision (const char *, const char *); /* Handle timeouts */ #ifdef LOCAL_TIMEOUT_ALARM_HANDLER +extern unsigned int timeout_state; extern unsigned int timeout_interval; RETSIGTYPE timeout_alarm_handler (int); #else +unsigned int timeout_state = STATE_CRITICAL; unsigned int timeout_interval = DEFAULT_SOCKET_TIMEOUT; extern RETSIGTYPE timeout_alarm_handler (int); #endif |