diff OrthancFramework/Sources/HttpServer/HttpServer.h @ 4227:7fff7e683d65

basic implementation of WebDAV handler
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 05 Oct 2020 10:55:24 +0200
parents 7bd5eab3ba25
children c8c0bbaaace3
line wrap: on
line diff
--- a/OrthancFramework/Sources/HttpServer/HttpServer.h	Sun Oct 04 13:23:53 2020 +0200
+++ b/OrthancFramework/Sources/HttpServer/HttpServer.h	Mon Oct 05 10:55:24 2020 +0200
@@ -239,5 +239,10 @@
     void Register(const std::vector<std::string>& root,
                   IWebDavBucket* bucket); // Takes ownership
 #endif
+
+    bool HandleWebDav(HttpOutput& output,
+                      const std::string& method,
+                      const IHttpHandler::Arguments& headers,
+                      const std::string& uri);
   };
 }