| 334 | } |
| 335 | |
| 336 | void SC::HttpTestClient::startWaiting(AsyncSocketSend::Result&) |
| 337 | { |
| 338 | timeoutAsync.callback.bind<HttpTestClient, &HttpTestClient::startSendingBody>(*this); |
| 339 | auto res = timeoutAsync.start(*eventLoop, bodyDelay); // 10 ms delay |
| 340 | SC_ASSERT_RELEASE(res); |
| 341 | } |
| 342 | |
| 343 | void SC::HttpTestClient::startSendingBody(AsyncLoopTimeout::Result&) |
| 344 | { |