sendto function winsock
The sendto function sends data to a specific destination.
int sendto(
SOCKET s,
const char *buf,
int len,
int flags,
const sockaddr *to,
int tolen
);
Implementation
int sendto(
int s,
Pointer<Utf8> buf,
int len,
int flags,
Pointer<SOCKADDR> to,
int tolen,
) => _sendto(s, buf, len, flags, to, tolen);