Re: [lwip-users] Non-blocking socket I/O

2008-03-07 Thread Jonathan Larmour
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. > >

Re: [lwip-users] Non-blocking socket I/O

2008-02-27 Thread Piero 74
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