Contains information about a send or receive buffer.
#include <sys/uio.h>
typedef struct iovec
{
caddr_t *iov_base;
int iov_len;
} iovec_t;
Points to the send or receive buffer.
Specifies the length of the send or receive buffer.