Searched refs:npcb (Results 1 – 3 of 3) sorted by relevance
/lk-master/external/lib/lwip/include/lwip/ |
A D | tcp_impl.h | 336 #define TCP_REG(pcbs, npcb) do {\ argument 337 … LWIP_DEBUGF(TCP_DEBUG, ("TCP_REG %p local port %d\n", (npcb), (npcb)->local_port)); \ 345 LWIP_ASSERT("TCP_REG: npcb->next != npcb", (npcb)->next != (npcb)); \ 346 *(pcbs) = (npcb); \ 350 #define TCP_RMV(pcbs, npcb) do { \ argument 361 (npcb)->next = NULL; \ 368 #define TCP_REG(pcbs, npcb) \ argument 370 (npcb)->next = *pcbs; \ 371 *(pcbs) = (npcb); \ 375 #define TCP_RMV(pcbs, npcb) \ argument [all …]
|
/lk-master/external/lib/lwip/core/ |
A D | tcp_in.c | 442 struct tcp_pcb *npcb; in tcp_listen_input() local 470 if (npcb == NULL) { in tcp_listen_input() 483 npcb->state = SYN_RCVD; in tcp_listen_input() 484 npcb->rcv_nxt = seqno + 1; in tcp_listen_input() 485 npcb->rcv_ann_right_edge = npcb->rcv_nxt; in tcp_listen_input() 488 npcb->ssthresh = npcb->snd_wnd; in tcp_listen_input() 498 TCP_REG_ACTIVE(npcb); in tcp_listen_input() 501 tcp_parseopt(npcb); in tcp_listen_input() 503 npcb->mss = tcp_eff_send_mss(npcb->mss, &(npcb->remote_ip)); in tcp_listen_input() 511 tcp_abandon(npcb, 0); in tcp_listen_input() [all …]
|
/lk-master/external/lib/lwip/core/snmp/ |
A D | mib2.c | 1846 struct udp_pcb *npcb; in snmp_delete_udpidx_tree() local 1859 npcb = udp_pcbs; in snmp_delete_udpidx_tree() 1860 while ((npcb != NULL)) in snmp_delete_udpidx_tree() 1862 if (ip_addr_cmp(&npcb->local_ip, &pcb->local_ip) && in snmp_delete_udpidx_tree() 1863 (npcb->local_port == udpidx[4])) in snmp_delete_udpidx_tree() 1867 npcb = npcb->next; in snmp_delete_udpidx_tree()
|
Completed in 31 milliseconds