X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=webcit%2Fcontext_loop.c;h=fb59144628ef36381458529276f4efafc6b8bf9f;hp=04c5cf0a3ea714ecb6ed959fa97d4aeb5d87e23a;hb=efccdcf4db04e63bfa3512c80215357ee9ffd98f;hpb=7c75121fc25fe20a03fdb05a4d6bfbea3d92f07a diff --git a/webcit/context_loop.c b/webcit/context_loop.c index 04c5cf0a3..fb5914462 100644 --- a/webcit/context_loop.c +++ b/webcit/context_loop.c @@ -714,7 +714,8 @@ const char *ReqStrs[eNONE] = { "DELETE", "HEAD", "MOVE", - "COPY" + "COPY", + "REPORT" }; void @@ -760,6 +761,10 @@ ServerStartModule_CONTEXT v = malloc(sizeof(long)); *v = eCOPY; Put(HttpReqTypes, HKEY("COPY"), v, NULL); + + v = malloc(sizeof(long)); + *v = eREPORT; + Put(HttpReqTypes, HKEY("REPORT"), v, NULL); } void