lwip-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [lwip-users] question about netconn_write


From: yueyue papa
Subject: Re: [lwip-users] question about netconn_write
Date: Sat, 13 Dec 2008 22:36:27 +0800

so elegement solution will be add a new kind of message type ,and let tcpip_thread to process.


 
On Sat, Dec 13, 2008 at 10:15 PM, Kieran Mansley <address@hidden> wrote:
On Sat, 2008-12-13 at 21:59 +0800, yueyue papa wrote:
> Thanks
>
> Based on your suggtion,
>
> I tried to add a lwip_tcpflush(int s)
>
> int lwip_tcpflush(int s)
> {
>   struct lwip_socket *sock;
>   sock = get_socket(s);
>   if (!sock)
>     return -1;
>   return tcp_output(sock->conn.pcb.tcp);
> }
>
> Will it force data flush ?

Yes, but you've completely broken the threading protection: the sockets
code can't access the internal functions of lwIP directly, they must use
a message to invoke an action in the tcpip thread.

Kieran



_______________________________________________
lwip-users mailing list
address@hidden
http://lists.nongnu.org/mailman/listinfo/lwip-users


reply via email to

[Prev in Thread] Current Thread [Next in Thread]