Home
last modified time | relevance | path

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

/lib/liblwip/src/include/lwip/
Dtcp_impl.h322 extern struct tcp_pcb *tcp_tmp_pcb; /* Only used for temporary storage. */
338 for(tcp_tmp_pcb = *(pcbs); \
339 tcp_tmp_pcb != NULL; \
340 tcp_tmp_pcb = tcp_tmp_pcb->next) { \
341 … LWIP_ASSERT("TCP_REG: already registered\n", tcp_tmp_pcb != (npcb)); \
355 … } else for(tcp_tmp_pcb = *(pcbs); tcp_tmp_pcb != NULL; tcp_tmp_pcb = tcp_tmp_pcb->next) { \
356 if(tcp_tmp_pcb->next == (npcb)) { \
357 tcp_tmp_pcb->next = (npcb)->next; \
381 for(tcp_tmp_pcb = *pcbs; \
382 tcp_tmp_pcb != NULL; \
[all …]
/lib/liblwip/src/core/
Dtcp.c117 struct tcp_pcb *tcp_tmp_pcb; variable