Home
last modified time | relevance | path

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

/lib/lwip/lwip/src/include/lwip/priv/
A Dtcp_priv.h355 #define TCP_REG(pcbs, npcb) do {\ argument
357 …LWIP_DEBUGF(TCP_DEBUG, ("TCP_REG %p local port %"U16_F"\n", (void *)(npcb), (npcb)->local_port)); \
365 LWIP_ASSERT("TCP_REG: npcb->next != npcb", (npcb)->next != (npcb)); \
366 *(pcbs) = (npcb); \
370 #define TCP_RMV(pcbs, npcb) do { \ argument
382 (npcb)->next = NULL; \
389 #define TCP_REG(pcbs, npcb) \ argument
391 (npcb)->next = *pcbs; \
392 *(pcbs) = (npcb); \
396 #define TCP_RMV(pcbs, npcb) \ argument
[all …]
/lib/lwip/lwip/src/core/
A Dtcp_in.c632 struct tcp_pcb *npcb; local
663 if (npcb == NULL) {
682 npcb->rcv_ann_right_edge = npcb->rcv_nxt;
684 npcb->snd_wl2 = iss;
685 npcb->snd_nxt = iss;
686 npcb->lastack = iss;
687 npcb->snd_lbb = iss;
704 tcp_parseopt(npcb);
706 npcb->snd_wnd_max = npcb->snd_wnd;
709 npcb->mss = tcp_eff_send_mss(npcb->mss, &npcb->local_ip, &npcb->remote_ip);
[all …]

Completed in 8 milliseconds