Home
last modified time | relevance | path

Searched refs:tcp_tmp_pcb (Results 1 – 2 of 2) sorted by relevance

/external/syslinux/core/lwip/src/include/lwip/
Dtcp_impl.h325 extern struct tcp_pcb *tcp_tmp_pcb; /* Only used for temporary storage. */
341 for(tcp_tmp_pcb = *(pcbs); \
342 tcp_tmp_pcb != NULL; \
343 tcp_tmp_pcb = tcp_tmp_pcb->next) { \
344 … LWIP_ASSERT("TCP_REG: already registered\n", tcp_tmp_pcb != (npcb)); \
358 … } else for(tcp_tmp_pcb = *(pcbs); tcp_tmp_pcb != NULL; tcp_tmp_pcb = tcp_tmp_pcb->next) { \
359 if(tcp_tmp_pcb->next == (npcb)) { \
360 tcp_tmp_pcb->next = (npcb)->next; \
384 for(tcp_tmp_pcb = *pcbs; \
385 tcp_tmp_pcb != NULL; \
[all …]
/external/syslinux/core/lwip/src/core/
Dtcp.c98 struct tcp_pcb *tcp_tmp_pcb; variable