Marko Panger wrote:
> Jonathan,
> 
> First of all - thanks !
> 
> How could I prevent from waiting forever ? I imagine by setting the
> conn->recv_timeout. Is there
> a api call for this or can I access it directly just before calling
> netconn_recv() ?

Unfortunately there isn't a proper API for accessing the receive timeout,
so for now you can just access the structure member directly in the
netconn, e.g.:

   /* Call it a timeout if there is nothing in 60 seconds */
   conn->recv_timeout = 60*1000;
   buf = netconn_recv(conn);
   if (!buf) {
      /* It timed out */
      ...
   }

Jifl
-- 
eCosCentric Limited      http://www.eCosCentric.com/     The eCos experts
Barnwell House, Barnwell Drive, Cambridge, UK.       Tel: +44 1223 245571
Registered in England and Wales: Reg No 4422071.
------["Si fractum non sit, noli id reficere"]------       Opinions==mine


_______________________________________________
lwip-users mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/lwip-users

Reply via email to