comparison Core/HttpServer/FilesystemHttpSender.cpp @ 1113:ba5c0908600c

Refactoring of HttpOutput ("Content-Length" header is now always sent)
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 02 Sep 2014 15:51:20 +0200
parents e078ea944089
children 6c5a77637b23
comparison
equal deleted inserted replaced
1112:a119f9ae3640 1113:ba5c0908600c
71 { 71 {
72 break; 72 break;
73 } 73 }
74 else 74 else
75 { 75 {
76 output.SendBodyData(&buffer[0], nbytes); 76 output.SendBody(&buffer[0], nbytes);
77 } 77 }
78 } 78 }
79 79
80 fclose(fp); 80 fclose(fp);
81 81