Mercurial > hg > orthanc
diff OrthancServer/OrthancRestApi/OrthancRestSystem.cpp @ 2069:fabf7820d1f1
New configuration options: "DicomScuTimeout" and "DicomScpTimeout" + validation of non-negative options
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 13 Jul 2016 16:52:39 +0200 |
parents | b1291df2f780 |
children | dd609a99d39a |
line wrap: on
line diff
--- a/OrthancServer/OrthancRestApi/OrthancRestSystem.cpp Wed Jul 13 16:10:25 2016 +0200 +++ b/OrthancServer/OrthancRestApi/OrthancRestSystem.cpp Wed Jul 13 16:52:39 2016 +0200 @@ -55,8 +55,8 @@ result["DatabaseVersion"] = OrthancRestApi::GetIndex(call).GetDatabaseVersion(); result["DicomAet"] = Configuration::GetGlobalStringParameter("DicomAet", "ORTHANC"); - result["DicomPort"] = Configuration::GetGlobalIntegerParameter("DicomPort", 4242); - result["HttpPort"] = Configuration::GetGlobalIntegerParameter("HttpPort", 8042); + result["DicomPort"] = Configuration::GetGlobalUnsignedIntegerParameter("DicomPort", 4242); + result["HttpPort"] = Configuration::GetGlobalUnsignedIntegerParameter("HttpPort", 8042); result["Name"] = Configuration::GetGlobalStringParameter("Name", ""); result["Version"] = ORTHANC_VERSION;