Renamed all groupdav_() functions to dav_()
[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
21 long locate_message_by_uid(const char *);
22 void dav_folder_list(void);
23 void euid_escapize(char *, const char *);
24 void euid_unescapize(char *, const char *);
25 void dav_identify_host(void);
26 void dav_identify_hosthdr(void);
27
28 void RegisterDAVNamespace(const char * UrlString, 
29                           long UrlSLen, 
30                           const char *DisplayName, 
31                           long dslen, 
32                           WebcitHandlerFunc F, 
33                           WebcitRESTDispatchID RID,
34                           long Flags);