diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-04-23 04:58:38 (GMT) |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-04-23 04:58:38 (GMT) |
commit | 994051b26f43c818bd3bfe481d2da48747a632ba (patch) | |
tree | 2b9d152bdb5fb357ba64cb7c4a517a0d5863ea26 | |
parent | 62f27910d9e63dc8e96fc8085bafe76a2ff2f928 (diff) | |
download | monitoring-plugins-994051b26f43c818bd3bfe481d2da48747a632ba.tar.gz |
update to RFC1123 hostname specs
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@498 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | plugins/check_http.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c index 7678084..e22560e 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c | |||
@@ -189,7 +189,7 @@ struct timeval tv; | |||
189 | #define URI_PATH "%[/a-zA-Z0-9._-=@,]" | 189 | #define URI_PATH "%[/a-zA-Z0-9._-=@,]" |
190 | 190 | ||
191 | enum { | 191 | enum { |
192 | MAX_IPV4_HOSTLENGTH = 64, | 192 | MAX_IPV4_HOSTLENGTH = 255, |
193 | HTTP_PORT = 80, | 193 | HTTP_PORT = 80, |
194 | HTTPS_PORT = 443 | 194 | HTTPS_PORT = 443 |
195 | }; | 195 | }; |
@@ -737,7 +737,7 @@ check_http (void) | |||
737 | asprintf (&orig_url, "%s", server_url); | 737 | asprintf (&orig_url, "%s", server_url); |
738 | pos = header; | 738 | pos = header; |
739 | while (pos) { | 739 | while (pos) { |
740 | server_address = realloc (server_address, MAX_IPV4_HOSTLENGTH); | 740 | server_address = realloc (server_address, MAX_IPV4_HOSTLENGTH + 1); |
741 | if (server_address == NULL) | 741 | if (server_address == NULL) |
742 | terminate (STATE_UNKNOWN, | 742 | terminate (STATE_UNKNOWN, |
743 | "HTTP UNKNOWN: could not allocate server_address"); | 743 | "HTTP UNKNOWN: could not allocate server_address"); |