Greetings TI-Community,
INT32 sendbuf = 1024;
if(!setsockopt( sockUDPClient, SOL_SOCKET, SO_SNDBUF, &sendbuf, sizeof(sendbuf) )) printf("\nError setup SO_SNDBUF.");
if(!setsockopt( sockUDPClient, SOL_SOCKET, SO_RCVBUF, &sendbuf, sizeof(sendbuf) )) printf("\nError setup SO_RCVBUF.");
I realize that the default sendbuffer is limited to 256 byte. So I want to change this, but the setsockopt() call allways returns a error. What do I wrong?
Thank You
Patrick