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