changeset 1871:e8146c9c28a4

Promiscuous mode is now turned off by default
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 07 Dec 2015 09:46:37 +0100
parents c8877965d67d
children 09a737a6bf36
files NEWS OrthancServer/main.cpp Resources/Configuration.json
diffstat 3 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/NEWS	Fri Dec 04 16:18:46 2015 +0100
+++ b/NEWS	Mon Dec 07 09:46:37 2015 +0100
@@ -3,6 +3,7 @@
 
 * Fix modality worklists server if some fields are null
 * More tolerant "/series/.../ordered-slices" with broken series
+* Promiscuous mode is now turned off by default
 
 
 Version 0.9.5 (2015/12/02)
--- a/OrthancServer/main.cpp	Fri Dec 04 16:18:46 2015 +0100
+++ b/OrthancServer/main.cpp	Mon Dec 07 09:46:37 2015 +0100
@@ -269,7 +269,7 @@
       }
     }
 
-    return Configuration::GetGlobalBoolParameter(configuration, true);
+    return Configuration::GetGlobalBoolParameter(configuration, false);
   }
 };
 
--- a/Resources/Configuration.json	Fri Dec 04 16:18:46 2015 +0100
+++ b/Resources/Configuration.json	Mon Dec 07 09:46:37 2015 +0100
@@ -104,7 +104,7 @@
 
   // Whether Orthanc accepts to act as C-Store SCP for unknown storage
   // SOP classes (aka. "promiscuous mode")
-  "UnknownSopClassAccepted"            : true,
+  "UnknownSopClassAccepted"            : false,