X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=webcit%2Fdav_report.c;h=9331ffd49d13dd29f93d3608e3f3e559b0f0ddbb;hp=33d1683421281b8d339ce4c9d7ed21f934587968;hb=HEAD;hpb=efccdcf4db04e63bfa3512c80215357ee9ffd98f diff --git a/webcit/dav_report.c b/webcit/dav_report.c index 33d168342..8780e3f30 100644 --- a/webcit/dav_report.c +++ b/webcit/dav_report.c @@ -10,7 +10,6 @@ * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * */ @@ -52,7 +51,7 @@ Content-length: 255 */ #include "webcit.h" -#include "webserver.h" + #include "dav.h" @@ -81,15 +80,18 @@ void dav_report(void) extern int ParseMessageListHeaders_EUID(StrBuf *Line, - const char **pos, - message_summary *Msg, - StrBuf *ConversionBuffer); + const char **pos, + message_summary *Msg, + StrBuf *ConversionBuffer, + void **ViewSpecific); extern int DavUIDL_GetParamsGetServerCall(SharedMessageStatus *Stat, - void **ViewSpecific, - long oper, - char *cmd, - long len); + void **ViewSpecific, + long oper, + char *cmd, + long len, + char *filter, + long flen); extern int DavUIDL_RenderView_or_Tail(SharedMessageStatus *Stat, void **ViewSpecific, @@ -107,10 +109,12 @@ InitModule_REPORT eReadEUIDS, DavUIDL_GetParamsGetServerCall, NULL, + NULL, ParseMessageListHeaders_EUID, NULL, DavUIDL_RenderView_or_Tail, - DavUIDL_Cleanup + DavUIDL_Cleanup, + NULL ); }