From a42baedc28ead0e4081e9092f17e44dc980f69e2 Mon Sep 17 00:00:00 2001 From: fbernon Date: Sat, 9 Jun 2007 09:59:16 +0000 Subject: [PATCH] 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, ...) --- src/api/sockets.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api/sockets.c b/src/api/sockets.c index e2729e03..7dcf4884 100644 --- a/src/api/sockets.c +++ b/src/api/sockets.c @@ -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);