Syntax: Sockets - int socketreadv(int s, struct iovec *iov, int iovcnt);
UnixLib - int readv(int s, const struct iovec *iov, size_t iovcnt);
Header: Sockets - socklib.h
UnixLib - sys/uio.h
Returns: amount of data received, or EOF if error
This call reads data into a gather array. The buffer descriptors are the same as those for Socket_Recvmsg or recv(), and as with Socket_Read or read() the flags are all treated as being zero.
C definition SWI definition
|
|
|