diff options
Diffstat (limited to 'plugins/utils.c')
0 files changed, 0 insertions, 0 deletions
diff --git a/plugins/netutils.c b/plugins/netutils.c index 0044046..f5e7dff 100644 --- a/plugins/netutils.c +++ b/plugins/netutils.c | |||
@@ -161,6 +161,10 @@ process_request (const char *server_address, int server_port, int proto, | |||
161 | int | 161 | int |
162 | np_net_connect (const char *host_name, int port, int *sd, int proto) | 162 | np_net_connect (const char *host_name, int port, int *sd, int proto) |
163 | { | 163 | { |
164 | /* send back STATE_UNKOWN if there's an error | ||
165 | send back STATE_OK if we connect | ||
166 | send back STATE_CRITICAL if we can't connect. | ||
167 | Let upstream figure out what to send to the user. */ | ||
164 | struct addrinfo hints; | 168 | struct addrinfo hints; |
165 | struct addrinfo *r, *res; | 169 | struct addrinfo *r, *res; |
166 | struct sockaddr_un su; | 170 | struct sockaddr_un su; |
@@ -249,12 +253,12 @@ np_net_connect (const char *host_name, int port, int *sd, int proto) | |||
249 | else if (was_refused) { | 253 | else if (was_refused) { |
250 | switch (econn_refuse_state) { /* a user-defined expected outcome */ | 254 | switch (econn_refuse_state) { /* a user-defined expected outcome */ |
251 | case STATE_OK: | 255 | case STATE_OK: |
252 | case STATE_WARNING: /* user wants WARN or OK on refusal */ | 256 | case STATE_WARNING: /* user wants WARN or OK on refusal, stay quiet */ |
253 | return econn_refuse_state; | 257 | return STATE_CRITICAL; |
254 | break; | 258 | break; |
255 | case STATE_CRITICAL: /* user did not set econn_refuse_state */ | 259 | case STATE_CRITICAL: /* user did not set econn_refuse_state, or wanted critical */ |
256 | printf ("%s\n", strerror(errno)); | 260 | printf ("%s\n", strerror(errno)); |
257 | return econn_refuse_state; | 261 | return STATE_CRITICAL; |
258 | break; | 262 | break; |
259 | default: /* it's a logic error if we do not end up in STATE_(OK|WARNING|CRITICAL) */ | 263 | default: /* it's a logic error if we do not end up in STATE_(OK|WARNING|CRITICAL) */ |
260 | return STATE_UNKNOWN; | 264 | return STATE_UNKNOWN; |