diff options
Diffstat (limited to 'subversion/include/svn_dav.h')
-rw-r--r-- | subversion/include/svn_dav.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/subversion/include/svn_dav.h b/subversion/include/svn_dav.h index e9092d5419389..9af9bc58f7edb 100644 --- a/subversion/include/svn_dav.h +++ b/subversion/include/svn_dav.h @@ -386,6 +386,41 @@ extern "C" { #define SVN_DAV_NS_DAV_SVN_REVERSE_FILE_REVS\ SVN_DAV_PROP_NS_DAV "svn/reverse-file-revs" +/** Presence of this in a DAV header in an OPTIONS response indicates + * that the transmitter (in this case, the server) knows how to handle + * svndiff1 format encoding. + * + * @since New in 1.10. + */ +#define SVN_DAV_NS_DAV_SVN_SVNDIFF1\ + SVN_DAV_PROP_NS_DAV "svn/svndiff1" + +/** Presence of this in a DAV header in an OPTIONS response indicates + * that the transmitter (in this case, the server) knows how to handle + * 'list' requests. + * + * @since New in 1.10. + */ +#define SVN_DAV_NS_DAV_SVN_LIST\ + SVN_DAV_PROP_NS_DAV "svn/list" + +/** Presence of this in a DAV header in an OPTIONS response indicates + * that the transmitter (in this case, the server) knows how to handle + * svndiff2 format encoding. + * + * @since New in 1.10. + */ +#define SVN_DAV_NS_DAV_SVN_SVNDIFF2\ + SVN_DAV_PROP_NS_DAV "svn/svndiff2" + +/** Presence of this in a DAV header in an OPTIONS response indicates + * that the transmitter (in this case, the server) sends the result + * checksum in the response to a successful PUT request. + * + * @since New in 1.10. + */ +#define SVN_DAV_NS_DAV_SVN_PUT_RESULT_CHECKSUM\ + SVN_DAV_PROP_NS_DAV "svn/put-result-checksum" /** @} */ |