| 1869 | |
| 1870 | bool AwaitSocketReceiveFromAwaiter::await_ready() const { return false; } |
| 1871 | |
| 1872 | bool AwaitSocketReceiveFromAwaiter::await_suspend(AwaitTask::Handle newContinuation) |
| 1873 | { |
| 1874 | setupCancellableAwait(continuation, stopCallback, newContinuation, this, AwaitSocketReceiveFromAwaiter::cancel); |
| 1875 | |
| 1876 | outResult = {}; |
| 1877 | request.callback = [this](AsyncSocketReceiveFrom::Result& result) |
nothing calls this directly
no outgoing calls
no test coverage detected