ASF Bugzilla – Attachment 23567 Details for
Bug 41114
ACL HTTP method is rejected by mod_proxy_ajp
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch against 2.2.11
httpd-2.2.11-acl.patch (text/plain), 1.64 KB, created by
jstaka
on 2009-04-30 22:49:52 UTC
(
hide
)
Description:
patch against 2.2.11
Filename:
MIME Type:
Creator:
jstaka
Created:
2009-04-30 22:49:52 UTC
Size:
1.64 KB
patch
obsolete
>--- httpd-2.2.11/include/httpd.h.orig 2009-05-01 14:35:42.000000000 +0900 >+++ httpd-2.2.11/include/httpd.h 2009-05-01 14:36:08.000000000 +0900 >@@ -601,7 +601,8 @@ > #define M_MKACTIVITY 23 > #define M_BASELINE_CONTROL 24 > #define M_MERGE 25 >-#define M_INVALID 26 /** RFC 3253: WebDAV Versioning */ >+#define M_ACL 26 >+#define M_INVALID 27 /** RFC 3253: WebDAV Versioning */ > > /** > * METHODS needs to be equal to the number of bits >--- httpd-2.2.11/modules/http/http_protocol.c.orig 2009-05-01 14:35:24.000000000 +0900 >+++ httpd-2.2.11/modules/http/http_protocol.c 2009-05-01 14:37:00.000000000 +0900 >@@ -459,6 +459,7 @@ > register_one_method(p, "MKACTIVITY", M_MKACTIVITY); > register_one_method(p, "BASELINE-CONTROL", M_BASELINE_CONTROL); > register_one_method(p, "MERGE", M_MERGE); >+ register_one_method(p, "ACL", M_ACL); > } > > AP_DECLARE(int) ap_method_register(apr_pool_t *p, const char *methname) >@@ -525,6 +526,10 @@ > return (method[1] == 'E' > && method[2] == 'T' > ? M_GET : UNKNOWN_METHOD); >+ case 'A': >+ return (method[1] == 'C' >+ && method[2] == 'L' >+ ? M_GET : UNKNOWN_METHOD); > default: > return UNKNOWN_METHOD; > } >--- httpd-2.2.11/modules/proxy/ajp_header.c.orig 2009-05-01 14:39:15.000000000 +0900 >+++ httpd-2.2.11/modules/proxy/ajp_header.c 2009-05-01 14:37:15.000000000 +0900 >@@ -159,6 +159,7 @@ > SC_M_MKACTIVITY, > SC_M_BASELINE_CONTROL, > SC_M_MERGE, >+ SC_M_ACL, > 0 /* M_INVALID */ > }; >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 41114
: 23567