From: hno <> Date: Sun, 4 Mar 2007 01:25:05 +0000 (+0000) Subject: Author: Pawel Worach X-Git-Tag: SQUID_3_0_PRE6~137 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dd13ffdb64e88f8aad4b0cc964642918e90031e5;p=thirdparty%2Fsquid.git Author: Pawel Worach Subversion request methods Here are patches for squid2 and squid3 that add three missing methods according to the list in the Subversion FAQ. Pawel --- diff --git a/src/HttpRequestMethod.cc b/src/HttpRequestMethod.cc index 1f8940e09c..320aa9a054 100644 --- a/src/HttpRequestMethod.cc +++ b/src/HttpRequestMethod.cc @@ -1,6 +1,6 @@ /* - * $Id: HttpRequestMethod.cc,v 1.1 2006/05/08 23:38:33 robertc Exp $ + * $Id: HttpRequestMethod.cc,v 1.2 2007/03/03 18:25:05 hno Exp $ * * DEBUG: section 73 HTTP Request * AUTHOR: Duane Wessels @@ -67,6 +67,9 @@ const char *RequestMethodStr[] = "UNSUBSCRIBE", "POLL", "REPORT", + "MKACTIVITY", + "CHECKOUT", + "MERGE", "%EXT00", "%EXT01", "%EXT02", diff --git a/src/HttpRequestMethod.h b/src/HttpRequestMethod.h index 9bb04ac7ba..fbece9a07a 100644 --- a/src/HttpRequestMethod.h +++ b/src/HttpRequestMethod.h @@ -1,6 +1,6 @@ /* - * $Id: HttpRequestMethod.h,v 1.3 2006/05/10 21:03:04 hno Exp $ + * $Id: HttpRequestMethod.h,v 1.4 2007/03/03 18:25:05 hno Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -64,6 +64,9 @@ enum _method_t { METHOD_UNSUBSCRIBE, METHOD_POLL, METHOD_REPORT, + METHOD_MKACTIVITY, + METHOD_CHECKOUT, + METHOD_MERGE, METHOD_EXT00, METHOD_EXT01, METHOD_EXT02,