Searched refs:accepts_pending (Results 1 - 6 of 6) sorted by relevance

/barrelfish-2018-10-04/include/lwip2/lwip/
H A Dtcp.h194 u8_t accepts_pending; member in struct:tcp_pcb_listen
/barrelfish-2018-10-04/lib/lwip2/src/core/
H A Dtcp.c218 pcb->listener->accepts_pending++;
219 LWIP_ASSERT("accepts_pending != 0", pcb->listener->accepts_pending != 0);
240 LWIP_ASSERT("accepts_pending != 0", pcb->listener->accepts_pending != 0);
241 pcb->listener->accepts_pending--;
735 lpcb->accepts_pending = 0;
H A Dtcp_in.c567 if (pcb->accepts_pending >= pcb->backlog) {
585 pcb->accepts_pending++;
/barrelfish-2018-10-04/include/lwip/lwip/
H A Dtcp.h81 #define tcp_accepted(pcb) (((struct tcp_pcb_listen *)(pcb))->accepts_pending--)
438 u8_t accepts_pending; member in struct:tcp_pcb_listen
/barrelfish-2018-10-04/lib/lwip/src/core/
H A Dtcp.c381 lpcb->accepts_pending = 0;
1158 /* Need to find the corresponding listen_pcb and decrease its accepts_pending */
1172 lpcb->accepts_pending > 0);
1173 lpcb->accepts_pending--;
H A Dtcp_in.c431 if (pcb->accepts_pending >= pcb->backlog) {
449 pcb->accepts_pending++;

Completed in 100 milliseconds