HomeSort by relevance Sort by last modified time
    Searched refs:TCP_REG (Results 1 - 3 of 3) sorted by null

  /external/syslinux/core/lwip/src/include/lwip/
tcp_impl.h 333 /* Define two macros, TCP_REG and TCP_RMV that registers a TCP PCB
339 #define TCP_REG(pcbs, npcb) do {\
340 LWIP_DEBUGF(TCP_DEBUG, ("TCP_REG %p local port %d\n", (npcb), (npcb)->local_port)); \
344 LWIP_ASSERT("TCP_REG: already registered\n", tcp_tmp_pcb != (npcb)); \
346 LWIP_ASSERT("TCP_REG: pcb->state != CLOSED", ((pcbs) == &tcp_bound_pcbs) || ((npcb)->state != CLOSED)); \
348 LWIP_ASSERT("TCP_REG: npcb->next != npcb", (npcb)->next != (npcb)); \
371 #define TCP_REG(pcbs, npcb) \
  /external/syslinux/core/lwip/src/core/
tcp.c 160 TCP_REG(&tcp_tw_pcbs, pcb);
449 TCP_REG(&tcp_bound_pcbs, pcb);
533 TCP_REG(&tcp_listen_pcbs.pcbs, (struct tcp_pcb *)lpcb);
734 TCP_REG(&tcp_active_pcbs, pcb);
    [all...]
tcp_in.c 495 TCP_REG(&tcp_active_pcbs, npcb);
746 TCP_REG(&tcp_tw_pcbs, pcb);
763 TCP_REG(&tcp_tw_pcbs, pcb);
773 TCP_REG(&tcp_tw_pcbs, pcb);
    [all...]

Completed in 1608 milliseconds