Mercurial > hg > orthanc
comparison OrthancServer/ParsedDicomFile.cpp @ 1523:c388502a066d
testing FilesystemHttpSender
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 11 Aug 2015 16:09:00 +0200 |
parents | 3606278d305e |
children | d6a93e12b1c1 |
comparison
equal
deleted
inserted
replaced
1522:f938f7779bcb | 1523:c388502a066d |
---|---|
275 { | 275 { |
276 static const size_t CHUNK_SIZE = 64 * 1024; // Use chunks of max 64KB | 276 static const size_t CHUNK_SIZE = 64 * 1024; // Use chunks of max 64KB |
277 chunk_.resize(CHUNK_SIZE); | 277 chunk_.resize(CHUNK_SIZE); |
278 } | 278 } |
279 | 279 |
280 virtual HttpCompression GetHttpCompression(bool /*gzipAllowed*/, | 280 virtual HttpCompression SetupHttpCompression(bool /*gzipAllowed*/, |
281 bool /*deflateAllowed*/) | 281 bool /*deflateAllowed*/) |
282 { | 282 { |
283 // No support for compression | 283 // No support for compression |
284 return HttpCompression_None; | 284 return HttpCompression_None; |
285 } | 285 } |
286 | 286 |