comparison Core/HttpServer/IHttpOutputStream.h @ 3160:fc9a4a2dad63

merge
author Alain Mazy <alain@mazy.be>
date Thu, 24 Jan 2019 10:55:19 +0100
parents 6e8822be2f08
children 94f4a18a79cc
comparison
equal deleted inserted replaced
3159:4cfed5c2eacd 3160:fc9a4a2dad63
48 } 48 }
49 49
50 virtual void OnHttpStatusReceived(HttpStatus status) = 0; 50 virtual void OnHttpStatusReceived(HttpStatus status) = 0;
51 51
52 virtual void Send(bool isHeader, const void* buffer, size_t length) = 0; 52 virtual void Send(bool isHeader, const void* buffer, size_t length) = 0;
53
54 // Disable HTTP keep alive for this single HTTP connection. Must
55 // be called before sending the "HTTP/1.1 200 OK" header.
56 virtual void DisableKeepAlive() = 0;
53 }; 57 };
54 } 58 }