Home
last modified time | relevance | path

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

/minix/minix/lib/liblwip/dist/src/include/lwip/priv/
H A Dtcp_priv.h343 #define TCP_REG(pcbs, npcb) do {\ argument
345 … LWIP_DEBUGF(TCP_DEBUG, ("TCP_REG %p local port %d\n", (npcb), (npcb)->local_port)); \
353 LWIP_ASSERT("TCP_REG: npcb->next != npcb", (npcb)->next != (npcb)); \
354 *(pcbs) = (npcb); \
358 #define TCP_RMV(pcbs, npcb) do { \ argument
370 (npcb)->next = NULL; \
377 #define TCP_REG(pcbs, npcb) \ argument
379 (npcb)->next = *pcbs; \
380 *(pcbs) = (npcb); \
384 #define TCP_RMV(pcbs, npcb) \ argument
[all …]
/minix/minix/lib/liblwip/dist/src/core/
H A Dtcp_in.c547 struct tcp_pcb *npcb; local
576 if (npcb == NULL) {
595 npcb->rcv_ann_right_edge = npcb->rcv_nxt;
597 npcb->snd_wl2 = iss;
598 npcb->snd_nxt = iss;
599 npcb->lastack = iss;
600 npcb->snd_lbb = iss;
613 tcp_parseopt(npcb);
615 npcb->snd_wnd_max = npcb->snd_wnd;
618 npcb->mss = tcp_eff_send_mss(npcb->mss, &npcb->local_ip, &npcb->remote_ip);
[all …]