Bring in new dkim code
[citadel.git] / webcit / dav.h
index a97408777adef447cde90775b631b0de4990a814..3426c81cde61d30dfc652a4d0eac5a04b70c40d6 100644 (file)
@@ -1,6 +1,18 @@
 /*
- * Data passed back and forth between groupdav_get() and its
- * callback functions called by the MIME parser
+ * Copyright (c) 1996-2013 by the citadel.org team
+ *
+ * This program is open source software.  You can redistribute it and/or
+ * modify it under the terms of the GNU General Public License, version 3.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * 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.
+ */
+
+
+/*
+ * Data passed back and forth between dav_get() and its callback functions called by the MIME parser
  */
 struct epdata {
        char desired_content_type_1[128];
@@ -10,20 +22,21 @@ struct epdata {
 };
 
 
-void groupdav_common_headers(void);
-void groupdav_main(void);
-void groupdav_get(void);
-void groupdav_put(void);
-void groupdav_delete(void);
-void groupdav_propfind(void);
-void groupdav_options(void);
+void dav_common_headers(void);
+void dav_main(void);
+void dav_get(void);
+void dav_put(void);
+void dav_delete(void);
+void dav_propfind(void);
+void dav_options(void);
+void dav_report(void);
 
 long locate_message_by_uid(const char *);
-void groupdav_folder_list(void);
+void dav_folder_list(void);
 void euid_escapize(char *, const char *);
 void euid_unescapize(char *, const char *);
-void groupdav_identify_host(void);
-void groupdav_identify_hosthdr(void);
+void dav_identify_host(void);
+void dav_identify_hosthdr(void);
 
 void RegisterDAVNamespace(const char * UrlString, 
                          long UrlSLen,