]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Author: Pawel Worach <pawel.worach@gmail.com>
authorhno <>
Sun, 4 Mar 2007 01:25:05 +0000 (01:25 +0000)
committerhno <>
Sun, 4 Mar 2007 01:25:05 +0000 (01:25 +0000)
Subversion request methods

Here are patches for squid2 and squid3 that add three missing methods
according to the list in the Subversion FAQ.

Pawel

src/HttpRequestMethod.cc
src/HttpRequestMethod.h

index 1f8940e09c1c9176c0263c3c1c7e2136286bc6ff..320aa9a054e871d71808c9f497825c22fa28d355 100644 (file)
@@ -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",
index 9bb04ac7ba2c20356d18e7b9c91b4a9184522d2e..fbece9a07aa7440d13e453502fc3d090a10eca6a 100644 (file)
@@ -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,