I have some problem.
I write client server app where information send & receive with win socket. On my project need send BYTE
array to client, and on client this char array convert to BYTE
, how I can create it, please help me, because send()
function can send only char*
. Thank you.
WSAAPI
send(
__in SOCKET s,
__in_bcount(len) const char FAR * buf,
__in int len,
__in int flags
);