#include <wsvv.h>
int PASCAL FAR send(s, buf, len, flags)
SOCKET s; /* connected socket on which to send */
const char FAR * buf; /* buffer containing data to transmit */
int len; /* length of data in buffer */
int flags; /* specifies optional behavior of the call */
Send data on a connected socket.
Addendum
The additional value for the flags parameter is VV_REQUESTREPLY. It indicates that the receiver will return data. This allows minimization of muting time of voice communications.
See Also
recv, recvfrom, socket, sendto, WSAStartup