recv function winsock
The recv function receives data from a connected socket or a bound connectionless socket.
int WSAAPI recv(
SOCKET s,
char *buf,
int len,
int flags
);
Implementation
int recv(int s, Pointer<Utf8> buf, int len, int flags) =>
_recv(s, buf, len, flags);