diff OrthancFramework/Sources/HttpServer/HttpToolbox.cpp @ 4326:83c5bd439fcc

fix for stone
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 24 Nov 2020 19:43:10 +0100
parents bf7b9edf6b81
children 9684a690ca63
line wrap: on
line diff
--- a/OrthancFramework/Sources/HttpServer/HttpToolbox.cpp	Tue Nov 24 16:21:29 2020 +0100
+++ b/OrthancFramework/Sources/HttpServer/HttpToolbox.cpp	Tue Nov 24 19:43:10 2020 +0100
@@ -188,6 +188,7 @@
   }
 
 
+#if ORTHANC_SANDBOXED != 1
   bool HttpToolbox::SimpleGet(std::string& result,
                               IHttpHandler& handler,
                               RequestOrigin origin,
@@ -212,8 +213,10 @@
       return false;
     }
   }
+#endif
 
 
+#if ORTHANC_SANDBOXED != 1
   static bool SimplePostOrPut(std::string& result,
                               IHttpHandler& handler,
                               RequestOrigin origin,
@@ -242,8 +245,10 @@
       return false;
     }
   }
+#endif
 
 
+#if ORTHANC_SANDBOXED != 1
   bool HttpToolbox::SimplePost(std::string& result,
                                IHttpHandler& handler,
                                RequestOrigin origin,
@@ -254,8 +259,10 @@
   {
     return SimplePostOrPut(result, handler, origin, HttpMethod_Post, uri, bodyData, bodySize, httpHeaders);
   }
+#endif
 
 
+#if ORTHANC_SANDBOXED != 1
   bool HttpToolbox::SimplePut(std::string& result,
                               IHttpHandler& handler,
                               RequestOrigin origin,
@@ -266,8 +273,10 @@
   {
     return SimplePostOrPut(result, handler, origin, HttpMethod_Put, uri, bodyData, bodySize, httpHeaders);
   }
+#endif
+  
 
-
+#if ORTHANC_SANDBOXED != 1
   bool HttpToolbox::SimpleDelete(IHttpHandler& handler,
                                  RequestOrigin origin,
                                  const std::string& uri,
@@ -284,4 +293,5 @@
     return handler.Handle(http, origin, LOCALHOST, "", HttpMethod_Delete, curi, 
                           httpHeaders, getArguments, NULL /* no body for DELETE */, 0);
   }
+#endif
 }