| 222 | } |
| 223 | |
| 224 | void WriteBufferFromHTTPServerResponse::cancelImpl() noexcept |
| 225 | { |
| 226 | // we have to close connection when it has been canceled |
| 227 | // client is waiting final empty chunk in the chunk encoding, chient has to receive EOF instead it ASAP |
| 228 | response.setKeepAlive(false); |
| 229 | HTTPWriteBuffer::cancelImpl(); |
| 230 | } |
| 231 | |
| 232 | bool WriteBufferFromHTTPServerResponse::isChunked() const |
| 233 | { |
nothing calls this directly
no test coverage detected