Mercurial > hg > orthanc
changeset 6660:5d0d0d41e00a machine-spirits
increased MAXIMUM_BODY_SIZE_IN_MEMORY to 100MB
| author | Sebastien Jodogne <s.jodogne@gmail.com> |
|---|---|
| date | Fri, 20 Mar 2026 17:35:32 +0100 |
| parents | 81d6130cf13a |
| children | be4a4f1ccaf4 |
| files | OrthancFramework/Sources/HttpServer/HttpServer.cpp |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancFramework/Sources/HttpServer/HttpServer.cpp Fri Mar 20 17:31:36 2026 +0100 +++ b/OrthancFramework/Sources/HttpServer/HttpServer.cpp Fri Mar 20 17:35:32 2026 +0100 @@ -546,7 +546,7 @@ bool hasMaxBodySize, size_t maxBodySize) { - static const size_t MAXIMUM_BODY_SIZE_IN_MEMORY = 10 * 1024 * 1024; // 10MB + static const size_t MAXIMUM_BODY_SIZE_IN_MEMORY = 100 * 1024 * 1024; // 100MB assert(!hasMaxBodySize || maxBodySize > 0);
