diff options
-rw-r--r-- | plugins/check_http.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c index 35ca748..468e4c2 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c | |||
@@ -182,11 +182,13 @@ struct timeval tv; | |||
182 | 182 | ||
183 | #define server_port_check(use_ssl) (use_ssl ? HTTPS_PORT : HTTP_PORT) | 183 | #define server_port_check(use_ssl) (use_ssl ? HTTPS_PORT : HTTP_PORT) |
184 | 184 | ||
185 | /* per RFC 2396 */ | ||
186 | |||
185 | #define HDR_LOCATION "%*[Ll]%*[Oo]%*[Cc]%*[Aa]%*[Tt]%*[Ii]%*[Oo]%*[Nn]: " | 187 | #define HDR_LOCATION "%*[Ll]%*[Oo]%*[Cc]%*[Aa]%*[Tt]%*[Ii]%*[Oo]%*[Nn]: " |
186 | #define URI_HTTP "%[HTPShtps]://" | 188 | #define URI_HTTP "%[HTPShtps]://" |
187 | #define URI_HOST "%[-.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]" | 189 | #define URI_HOST "%[-.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]" |
188 | #define URI_PORT ":%[-0123456789]" | 190 | #define URI_PORT ":%[0123456789]" |
189 | #define URI_PATH "%[-_=@,?&#;/.abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]" | 191 | #define URI_PATH "%[-_.!~*'();/?:@&=+$,%#abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]" |
190 | 192 | ||
191 | enum { | 193 | enum { |
192 | MAX_IPV4_HOSTLENGTH = 255, | 194 | MAX_IPV4_HOSTLENGTH = 255, |