| 452 | } |
| 453 | |
| 454 | Result HttpIncomingMessage::startBodyStream() |
| 455 | { |
| 456 | if (bodyStream.canStart()) |
| 457 | { |
| 458 | SC_TRY(bodyStream.start()); |
| 459 | } |
| 460 | else |
| 461 | { |
| 462 | bodyStream.resumeReading(); |
| 463 | } |
| 464 | bodyStreamStarted = true; |
| 465 | return Result(true); |
| 466 | } |
| 467 | |
| 468 | bool HttpIncomingMessage::pushBodyData(AsyncBufferView::ID bufferID, size_t sizeInBytes) |
| 469 | { |
no test coverage detected