comparison OrthancFramework/Sources/HttpServer/HttpOutput.cpp @ 4201:2d5209153b32

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 17 Sep 2020 08:18:28 +0200
parents bf7b9edf6b81
children db3932f9660d
comparison
equal deleted inserted replaced
4200:7112a8af0b63 4201:2d5209153b32
49 bool isKeepAlive) : 49 bool isKeepAlive) :
50 stream_(stream), 50 stream_(stream),
51 state_(State_WritingHeader), 51 state_(State_WritingHeader),
52 status_(HttpStatus_200_Ok), 52 status_(HttpStatus_200_Ok),
53 hasContentLength_(false), 53 hasContentLength_(false),
54 contentLength_(0),
54 contentPosition_(0), 55 contentPosition_(0),
55 keepAlive_(isKeepAlive) 56 keepAlive_(isKeepAlive)
56 { 57 {
57 } 58 }
58 59