comparison Core/HttpServer/FilesystemHttpSender.h @ 1523:c388502a066d

testing FilesystemHttpSender
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 11 Aug 2015 16:09:00 +0200
parents f938f7779bcb
children f9b0169eb6bb
comparison
equal deleted inserted replaced
1522:f938f7779bcb 1523:c388502a066d
78 78
79 /** 79 /**
80 * Implementation of the IHttpStreamAnswer interface. 80 * Implementation of the IHttpStreamAnswer interface.
81 **/ 81 **/
82 82
83 virtual HttpCompression GetHttpCompression(bool /*gzipAllowed*/, 83 virtual HttpCompression SetupHttpCompression(bool /*gzipAllowed*/,
84 bool /*deflateAllowed*/); 84 bool /*deflateAllowed*/);
85 85
86 virtual uint64_t GetContentLength() 86 virtual uint64_t GetContentLength();
87 {
88 return size_;
89 }
90 87
91 virtual bool ReadNextChunk(); 88 virtual bool ReadNextChunk();
92 89
93 virtual const char* GetChunkContent(); 90 virtual const char* GetChunkContent();
94 91