| 1083 | } |
| 1084 | |
| 1085 | Result HttpOutgoingMessage::end() |
| 1086 | { |
| 1087 | SC_TRY_MSG(headersSent, "Forgot to send headers"); |
| 1088 | writableStream->end(); |
| 1089 | endCalled = true; |
| 1090 | return Result(true); |
| 1091 | } |
| 1092 | |
| 1093 | void HttpOutgoingMessage::setKeepAlive(bool value) { keepAlive = value; } |
| 1094 |