24 Mar
2021
24 Mar
'21
4:06 p.m.
Hi Paul, Thanks for looking at it. Ultimately, we don't want those asyncs in winsock, but this seems good for now. On 23.03.2021 19:45, Paul Gofman wrote:
- wsa->iovec[0].iov_base = sendBuf; + wsa->iovec[0].iov_base = sendBuf ? (BYTE *)wsa + offsetof( struct ws2_async, iovec[1] ) : NULL;
I think you could use just &wsa->iovec[1] instead. Jacek