Created stub for REPORT method
[citadel.git] / webcit / context_loop.c
index 04c5cf0a3ea714ecb6ed959fa97d4aeb5d87e23a..fb59144628ef36381458529276f4efafc6b8bf9f 100644 (file)
@@ -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