Hi guys,Is there any reason why scatter/gather I/O functionality is not available in go? Even syscall.Sendmsg() accepts a single []byte, from which it creates a single Iovec and sends it using the wrapped syscall.
Alex
Also, by looking at the source code for the "net" package I realised that just implementing a syscall is not enough. The ultimate goal is to have an equivalent of netFD's WriteMsg() which would accept [][]byte or ...[]byte. However doing so requires either modifying the "net" package or having my own implementation because some of the functionality (like pollServer) is not exported.