Function: sock_readv Purpose: Reads a vector from an open file descriptor, usually a socket. Category: SYSTEM File: sockio.c Author: K.G. Begeman Call: int sock_readv( int fd, struct sock_iovec *vector, int count ) struct sock_iovec { void *iov_base; int iov_len; } sock_readv returns 0 on success, -1 on error fd open file descriptor vector points to multiple data buffers into which the data is read count number of elements in vector Updates: Oct 29, 94: KGB, Document created.