Lines Matching defs:backlog
442 * Delay accepting a connection in respect to the listen backlog:
447 * or else the backlog feature will get out of sync!
470 * or else the backlog feature will get out of sync!
975 * The backlog limits the number of outstanding connections
976 * in the listen queue to the value specified by the backlog argument.
980 * @param backlog the incoming connections queue limit
985 * tpcb = tcp_listen_with_backlog(tpcb, backlog);
988 tcp_listen_with_backlog(struct tcp_pcb *pcb, u8_t backlog)
991 return tcp_listen_with_backlog_and_err(pcb, backlog, NULL);
1002 * @param backlog the incoming connections queue limit
1008 * tpcb = tcp_listen_with_backlog_and_err(tpcb, backlog, &err);
1011 tcp_listen_with_backlog_and_err(struct tcp_pcb *pcb, u8_t backlog, err_t *err)
1016 LWIP_UNUSED_ARG(backlog);
1078 tcp_backlog_set(lpcb, backlog);