Muhamad Ikhwan Ismail wrote:
> I am now trying
> to implement non-blocking socket operation for
> connect() and write(). For accept() and read() the socket is now
> non-blocking since I use select().
> I am aware that there is such a thread previously, however it ends with
> no clear result.
>
>
Hi.
i'm starting to use lwip 130rc1 and i have to use socket.
I need to use non-blocking socket.
My idea is to use select() , with 2 socket in listen mode inside and 2 udp
socket.
when a new connection is incoming, add it to select.
what do you think about this idea? can you help me to implemen