diff OrthancServer/Resources/Configuration.json @ 4451:f4dbdb2dcba6

new configuration option "MaximumPduLength" to tune the maximum PDU length
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 18 Jan 2021 14:51:52 +0100
parents 4a4e33c9082d
children 522e13a60cfc
line wrap: on
line diff
--- a/OrthancServer/Resources/Configuration.json	Thu Jan 14 09:13:29 2021 +0100
+++ b/OrthancServer/Resources/Configuration.json	Mon Jan 18 14:51:52 2021 +0100
@@ -714,5 +714,11 @@
   // follow for the deidentification/anonymization of the query
   // contents. Possible values are "2008" and "2017c" (new in Orthanc
   // 1.8.2)
-  "DeidentifyLogsDicomVersion" : "2017c"
+  "DeidentifyLogsDicomVersion" : "2017c",
+
+  // Maximum length of the PDU (Protocol Data Unit) in the DICOM
+  // network protocol, expressed in bytes. This value affects both
+  // Orthanc SCU and Orthanc SCP. It defaults to 16KB. The allowed
+  // range is [4096,131072]. (new in Orthanc 1.9.0)
+  "MaximumPduLength" : 16384
 }