Searched refs:backlog (Results 1 – 11 of 11) sorted by relevance
| /lib/liblwip/src/api/ |
| D | api_lib.c | 241 netconn_listen_with_backlog(struct netconn *conn, u8_t backlog) in netconn_listen_with_backlog() argument 248 LWIP_UNUSED_ARG(backlog); in netconn_listen_with_backlog() 255 msg.msg.msg.lb.backlog = backlog; in netconn_listen_with_backlog() 263 LWIP_UNUSED_ARG(backlog); in netconn_listen_with_backlog()
|
| D | sockets.c | 525 lwip_listen(int s, int backlog) in lwip_listen() argument 530 LWIP_DEBUGF(SOCKETS_DEBUG, ("lwip_listen(%d, backlog=%d)\n", s, backlog)); in lwip_listen() 538 backlog = LWIP_MIN(LWIP_MAX(backlog, 0), 0xff); in lwip_listen() 540 err = netconn_listen_with_backlog(sock->conn, (u8_t)backlog); in lwip_listen()
|
| D | api_msg.c | 1074 struct tcp_pcb* lpcb = tcp_listen_with_backlog(msg->conn->pcb.tcp, msg->msg.lb.backlog);
|
| /lib/liblwip/src/include/lwip/ |
| D | tcp.h | 291 u8_t backlog; member 347 struct tcp_pcb * tcp_listen_with_backlog(struct tcp_pcb *pcb, u8_t backlog);
|
| D | api_msg.h | 114 u8_t backlog; member
|
| D | api.h | 229 err_t netconn_listen_with_backlog(struct netconn *conn, u8_t backlog);
|
| D | sockets.h | 330 int lwip_listen(int s, int backlog);
|
| /lib/liblwip/src/core/ |
| D | tcp.c | 519 tcp_listen_with_backlog(struct tcp_pcb *pcb, u8_t backlog) in tcp_listen_with_backlog() argument 523 LWIP_UNUSED_ARG(backlog); in tcp_listen_with_backlog() 567 lpcb->backlog = (backlog ? backlog : 1); in tcp_listen_with_backlog()
|
| D | tcp_in.c | 461 if (pcb->accepts_pending >= pcb->backlog) { in tcp_listen_input()
|
| /lib/liblwip/doc/ |
| D | rawapi.txt | 138 - struct tcp_pcb *tcp_listen_with_backlog(struct tcp_pcb *pcb, u8_t backlog) 141 in the listen queue to the value specified by the backlog argument. 149 queued in the listen backlog.
|
| /lib/liblwip/ |
| D | CHANGELOG | 1409 * tcp.c: fixed bug #25467: Listen backlog is not reset on timeout in SYN_RCVD: 1549 tcp_in.c, init.c, opt.h: rename backlog options with TCP_ prefix, limit the 1550 "backlog" parameter in an u8_t, 0 is interpreted as "smallest queue", add 1568 sockets.c, init.c: task #7252: Implement TCP listen backlog: Warning: raw API
|