Home
last modified time | relevance | path

Searched refs:alloc_socket (Results 1 – 10 of 10) sorted by relevance

/third_party/lwip/
D0034-add-accept4-and-epoll_create1.patch37 -alloc_socket(struct netconn *newconn, int accepted)
38 +alloc_socket(struct netconn *newconn, int accepted, int flags)
42 @@ -570,12 +571,19 @@ alloc_socket(struct netconn *newconn, int accepted)
75 - newsock = alloc_socket(newconn, 1);
76 + newsock = alloc_socket(newconn, 1, flags);
108 - i = alloc_socket(conn, 0);
117 + i = alloc_socket(conn, 0, flags);
D0033-alloc-socket-fail-clean-sock.patch15 @@ -598,6 +598,9 @@ alloc_socket(struct netconn *newconn, int accepted)
D0073-lstack_lwip-external-api-start-with-do_lwip_-prefix.patch60 @@ -613,7 +613,7 @@ alloc_socket(struct netconn *newconn, int accepted, int flags)
D0057-same-node-gazellectl-a.patch24 @@ -605,6 +605,10 @@ alloc_socket(struct netconn *newconn, int accepted, int flags)
D0080-enable-ipv6.patch52 @@ -555,7 +564,8 @@ alloc_socket(struct netconn *newconn, int accepted, int flags)
D0016-lstack-support-mysql-mode.patch115 @@ -604,8 +596,6 @@ alloc_socket(struct netconn *newconn, int accepted)
D0002-adapt-lstack.patch698 @@ -504,6 +559,62 @@ alloc_socket(struct netconn *newconn, int accepted)
732 + *if connection accepted and alloc_socket called, it can be only NETCONN_LIBOS*/
761 @@ -535,6 +646,8 @@ alloc_socket(struct netconn *newconn, int accepted)
D0053-cleancode-improve-lwipopts.h-readability.patch192 @@ -553,7 +553,7 @@ alloc_socket(struct netconn *newconn, int accepted, int flags)
DCHANGELOG55 * sockets.c: alloc_socket(): Check for LWIP_SOCKET_POLL when setting select-
3196 * sockets.c: remplace ENOBUFS errors on alloc_socket by ENFILE to be more BSD compliant.
/third_party/lwip/src/api/
Dsockets.c509 alloc_socket(struct netconn *newconn, int accepted) in alloc_socket() function
662 newsock = alloc_socket(newconn, 1); in lwip_accept()
1801 i = alloc_socket(conn, 0); in lwip_socket()