comparison 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
comparison
equal deleted inserted replaced
4450:9bf2f9e0af47 4451:f4dbdb2dcba6
712 712
713 // If "DeidentifyLogs" is true, this sets the DICOM standard to 713 // If "DeidentifyLogs" is true, this sets the DICOM standard to
714 // follow for the deidentification/anonymization of the query 714 // follow for the deidentification/anonymization of the query
715 // contents. Possible values are "2008" and "2017c" (new in Orthanc 715 // contents. Possible values are "2008" and "2017c" (new in Orthanc
716 // 1.8.2) 716 // 1.8.2)
717 "DeidentifyLogsDicomVersion" : "2017c" 717 "DeidentifyLogsDicomVersion" : "2017c",
718
719 // Maximum length of the PDU (Protocol Data Unit) in the DICOM
720 // network protocol, expressed in bytes. This value affects both
721 // Orthanc SCU and Orthanc SCP. It defaults to 16KB. The allowed
722 // range is [4096,131072]. (new in Orthanc 1.9.0)
723 "MaximumPduLength" : 16384
718 } 724 }