From: wessels <> Date: Sat, 12 Nov 2005 00:45:15 +0000 (+0000) Subject: Added WebDAV REPORT method to know HTTP methods list X-Git-Tag: SQUID_3_0_PRE4~534 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0ad06048801189bc37d75efd0a5ed6a9ca3a7e25;p=thirdparty%2Fsquid.git Added WebDAV REPORT method to know HTTP methods list --- diff --git a/src/enums.h b/src/enums.h index 509fe4547e..3f33503d49 100644 --- a/src/enums.h +++ b/src/enums.h @@ -1,6 +1,6 @@ /* - * $Id: enums.h,v 1.244 2005/10/23 11:55:36 hno Exp $ + * $Id: enums.h,v 1.245 2005/11/11 17:45:15 wessels Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -358,6 +358,7 @@ typedef enum { METHOD_SUBSCRIBE, METHOD_UNSUBSCRIBE, METHOD_POLL, + METHOD_REPORT, METHOD_EXT00, METHOD_EXT01, METHOD_EXT02, diff --git a/src/url.cc b/src/url.cc index 36e5e96eaf..fd91b926e2 100644 --- a/src/url.cc +++ b/src/url.cc @@ -1,6 +1,6 @@ /* - * $Id: url.cc,v 1.147 2005/09/14 21:09:38 wessels Exp $ + * $Id: url.cc,v 1.148 2005/11/11 17:45:15 wessels Exp $ * * DEBUG: section 23 URL Parsing * AUTHOR: Duane Wessels @@ -64,6 +64,7 @@ const char *RequestMethodStr[] = "SUBSCRIBE", "UNSUBSCRIBE", "POLL", + "REPORT", "%EXT00", "%EXT01", "%EXT02",