src/server/webdav/multistatus.h

changeset 415
d938228c382e
parent 403
0f678595d497
equal deleted inserted replaced
414:99a34860c105 415:d938228c382e
28 #ifndef MULTISTATUS_H 28 #ifndef MULTISTATUS_H
29 #define MULTISTATUS_H 29 #define MULTISTATUS_H
30 30
31 #include "../public/webdav.h" 31 #include "../public/webdav.h"
32 32
33 #include <ucx/map.h> 33 #include <cx/map.h>
34 #include <ucx/buffer.h> 34 #include <cx/buffer.h>
35 #include <libxml/tree.h> 35 #include <libxml/tree.h>
36 #include "../util/writer.h" 36 #include "../util/writer.h"
37 37
38 #ifdef __cplusplus 38 #ifdef __cplusplus
39 extern "C" { 39 extern "C" {
59 * Map of document namespace definitions 59 * Map of document namespace definitions
60 * 60 *
61 * key: (char*) namespace prefix 61 * key: (char*) namespace prefix
62 * value: WSNamespace* 62 * value: WSNamespace*
63 */ 63 */
64 UcxMap *namespaces; 64 CxMap *namespaces;
65 65
66 /* 66 /*
67 * Is this a proppatch request? 67 * Is this a proppatch request?
68 * 68 *
69 * In a proppatch response, when the first property with an error occurs, 69 * In a proppatch response, when the first property with an error occurs,
82 /* 82 /*
83 * Contains all properties that were added to the response 83 * Contains all properties that were added to the response
84 * key: <href> null-byte <name> 84 * key: <href> null-byte <name>
85 * value: WebdavProperty* 85 * value: WebdavProperty*
86 */ 86 */
87 UcxMap *properties; 87 CxMap *properties;
88 88
89 /* 89 /*
90 * All properties with status != 200 90 * All properties with status != 200
91 */ 91 */
92 PropertyErrorList *errors; 92 PropertyErrorList *errors;

mercurial