<TestingPlant>
I'm currently writing a tcp server and trying to figure out how to handle partial writes. With the regular write syscall, I can avoid partial writes by setting SO_SNDTIMEO to a high timeout value to force the entire buffer to get written. However, io_uring still seems to do partial writes with the timeout increased. Is there a flag I can set to avoid partial writes?
TestingPlant has quit [Remote host closed the connection]