Home
last modified time | relevance | path

Searched refs:lwip_recvfrom (Results 1 – 6 of 6) sorted by relevance

/third_party/lwip/src/include/lwip/
Dsockets.h546 #define lwip_recvfrom recvfrom macro
589 ssize_t lwip_recvfrom(int s, void *mem, size_t len, int flags,
657 #define recvfrom(s,mem,len,flags,from,fromlen) lwip_recvfrom(s,mem,len,flags,from,fromlen)
/third_party/lwip/
D0016-lstack-support-mysql-mode.patch436 lwip_recvfrom(int s, void *mem, size_t len, int flags,
438 @@ -1499,15 +1337,6 @@ lwip_recvfrom(int s, void *mem, size_t len, int flags,
451 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_recvfrom(%d, %p, %"SZT_F", 0x%x, ..)\n", s, mem, len, flags));
454 @@ -1557,14 +1386,6 @@ lwip_recvfrom(int s, void *mem, size_t len, int flags,
466 return lwip_recvfrom(s, mem, len, 0, NULL, NULL);
D0060-lwip-add-udp-multicast.patch84 @@ -1409,6 +1423,7 @@ lwip_recvfrom(int s, void *mem, size_t len, int flags,
DCHANGELOG2034 * sockets.c: Fixed bug #28853 (lwip_recvfrom() returns 0 on receive time-out
2134 * sockets.c: Fixed bug #28519 (lwip_recvfrom bug with len > 65535)
2530 * sockets.c: tried to fix bug #23559: lwip_recvfrom problem with tcp
2620 * sockets.c: fixed bug #25051: lwip_recvfrom problem with udp: fromaddr and
3030 Improved lwip_recvfrom(). TCP push now propagated.
3284 * sockets.c: Fix bug #22435 "lwip_recvfrom with TCP break;". Using
3293 LWIP_SOCKET=1, the code did the wrong supposition that lwip_recvfrom
D0002-adapt-lstack.patch1114 lwip_recvfrom(int s, void *mem, size_t len, int flags,
1116 @@ -1201,6 +1510,15 @@ lwip_recvfrom(int s, void *mem, size_t len, int flags,
1129 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_recvfrom(%d, %p, %"SZT_F", 0x%x, ..)\n", s, mem, len, flags));
1132 @@ -1250,6 +1568,14 @@ lwip_recvfrom(int s, void *mem, size_t len, int flags,
1144 return lwip_recvfrom(s, mem, len, 0, NULL, NULL);
/third_party/lwip/src/api/
Dsockets.c1230 lwip_recvfrom(int s, void *mem, size_t len, int flags, in lwip_recvfrom() function
1297 return lwip_recvfrom(s, mem, len, 0, NULL, NULL); in lwip_read()
1320 return lwip_recvfrom(s, mem, len, flags, NULL, NULL); in lwip_recv()