Just add a comment to explain that the lwip_sendto patch for LWIP_TCPIP_CORE_LOCKING option is just show a sample (it's not a full implementation, RAW connection and "to" field are not handled, ...)

This commit is contained in:
fbernon 2007-06-09 09:59:16 +00:00
parent 6607cab902
commit a42baedc28

View File

@ -542,6 +542,7 @@ lwip_sendto(int s, const void *data, int size, unsigned int flags,
((((struct sockaddr_in *)to)->sin_family) == AF_INET))));
#if LWIP_TCPIP_CORE_LOCKING
/* Should only be consider like a sample or a simple way to experiment this option (no check of "to" field, no RAW send/sendto...) */
{ struct pbuf* p;
p = pbuf_alloc(PBUF_TRANSPORT, 0, PBUF_REF);