Created stub for REPORT method
[citadel.git] / webcit / dav.h
1 /*
2  * Data passed back and forth between dav_get() and its
3  * callback functions called by the MIME parser
4  */
5 struct epdata {
6         char desired_content_type_1[128];
7         char desired_content_type_2[128];
8         char found_section[128];
9         char charset[128];
10 };
11
12
13 void dav_common_headers(void);
14 void dav_main(void);
15 void dav_get(void);
16 void dav_put(void);
17 void dav_delete(void);
18 void dav_propfind(void);
19 void dav_options(void);
20 void dav_report(void);
21
22 long locate_message_by_uid(const char *);
23 void dav_folder_list(void);
24 void euid_escapize(char *, const char *);
25 void euid_unescapize(char *, const char *);
26 void dav_identify_host(void);
27 void dav_identify_hosthdr(void);
28
29 void RegisterDAVNamespace(const char * UrlString, 
30                           long UrlSLen, 
31                           const char *DisplayName, 
32                           long dslen, 
33                           WebcitHandlerFunc F, 
34                           WebcitRESTDispatchID RID,
35                           long Flags);