1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
/*
* 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];
char desired_content_type_2[128];
char found_section[128];
char charset[128];
};
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 dav_folder_list(void);
void euid_escapize(char *, const char *);
void euid_unescapize(char *, const char *);
void dav_identify_host(void);
void dav_identify_hosthdr(void);
void RegisterDAVNamespace(const char * UrlString,
long UrlSLen,
const char *DisplayName,
long dslen,
WebcitHandlerFunc F,
WebcitRESTDispatchID RID,
long Flags);
|