Forum Discussion
Altera_Forum
Honored Contributor
20 years agoYou are correct that there is no fcntl() for LWIP. However there is a handy ioctl which will do what you want FIONBIO.
The syntax is to set non blocking int fred = 1; ioctlsocket(your_socket,FIONBIO,&fred) Simply set fred to 0 for blocking. I've not tested this, so caveat emptor