Home
last modified time | relevance | path

Searched refs:tcp_listen (Results 1 – 4 of 4) sorted by relevance

/external/syslinux/core/lwip/doc/
Drawapi.txt120 - struct tcp_pcb *tcp_listen(struct tcp_pcb *pcb)
127 The tcp_listen() function returns a new connection identifier, and
130 needed for a connection that is listening, so tcp_listen() will
134 tcp_listen() may return NULL if no memory was available for the
136 passed as an argument to tcp_listen() will not be deallocated.
140 Same as tcp_listen, but limits the number of outstanding connections
/external/syslinux/core/lwip/src/include/lwip/
Dtcp.h346 #define tcp_listen(pcb) tcp_listen_with_backlog(pcb, TCP_DEFAULT_LISTEN_BACKLOG) macro
/external/syslinux/core/lwip/src/api/
Dapi_msg.c1064 struct tcp_pcb* lpcb = tcp_listen(msg->conn->pcb.tcp);
/external/syslinux/core/lwip/
DCHANGELOG447 * tcp.c: tcp_listen() did not copy the pcb's prio.
1987 * api_msg.c, tcp.c: Fix bug #20480: Check the pcb passed to tcp_listen() for the
1999 * api_msg.c: Fix bug #20315: possible memory leak problem if tcp_listen failed,