Commit 328e6f5b authored by Kenton Varda's avatar Kenton Varda

Add missing HTTP method ACL (from WebDAV).

parent 72cfcfca
...@@ -346,6 +346,7 @@ static kj::Maybe<HttpMethod> consumeHttpMethod(char*& ptr) { ...@@ -346,6 +346,7 @@ static kj::Maybe<HttpMethod> consumeHttpMethod(char*& ptr) {
} }
switch (*p++) { switch (*p++) {
case 'A': EXPECT_REST(A,CL)
case 'C': case 'C':
switch (*p++) { switch (*p++) {
case 'H': EXPECT_REST(CH,ECKOUT) case 'H': EXPECT_REST(CH,ECKOUT)
......
...@@ -64,6 +64,7 @@ namespace kj { ...@@ -64,6 +64,7 @@ namespace kj {
MACRO(PROPPATCH) \ MACRO(PROPPATCH) \
MACRO(SEARCH) \ MACRO(SEARCH) \
MACRO(UNLOCK) \ MACRO(UNLOCK) \
MACRO(ACL) \
/* WebDAV */ \ /* WebDAV */ \
\ \
MACRO(REPORT) \ MACRO(REPORT) \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment