Hi,Simon!
Thanks for your reply!
>I'm assuming this is a nonblocking connect?
yes!
> select(65,readset, writeset,errset, 0);
> for(i=0;i {
> if (FD_ISSET(clientsocket[i].socket, writeset))
> send();
> if (FD_ISSET(clientsocket
园A区4楼
***
-
发件人:Kieran Mansley
发送日期:2011-04-03 18:45:17
收件人:Mailing list for lwIP users
抄送:
主题:Re: [lwip-users] will lwip support asyncselect just likeWSAAsyncSelect
On 2 Apr 2011, at 06:29, chenyintao wrote:
> Hi!
> I want to use lwip 1.3.2 to support multiple sessions in a embe
Hi!
I want to use lwip 1.3.2 to support multiple sessions in a embedded system.
But I foud it is so inefficient to use the api select when there are 64
sockets as clients.For example,a modbus client socket can only do the receive
data after all the 64 sockets finish sending.
will any
Hi!
I have a questino with the funciton tcpip_apimsg.
when the mbox if full and sys_mbox_post(mbox, &msg) is failed so the msg
would lost,but the sys_arch_sem_wait(apimsg->msg.conn->op_completed, 0) is
still called.Will it caused the application thread suspended forever because
it's wa