Home
last modified time | relevance | path

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

/external/syslinux/core/lwip/src/core/
Dtcp.c404 struct tcp_pcb *cpcb; in tcp_bind() local
425 for(cpcb = *tcp_pcb_lists[i]; cpcb != NULL; cpcb = cpcb->next) { in tcp_bind()
426 if (cpcb->local_port == port) { in tcp_bind()
432 ((cpcb->so_options & SOF_REUSEADDR) == 0)) in tcp_bind()
435 if (ip_addr_isany(&(cpcb->local_ip)) || in tcp_bind()
437 ip_addr_cmp(&(cpcb->local_ip), ipaddr)) { in tcp_bind()
687 struct tcp_pcb *cpcb; in tcp_connect() local
691 for(cpcb = *tcp_pcb_lists[i]; cpcb != NULL; cpcb = cpcb->next) { in tcp_connect()
692 if ((cpcb->local_port == pcb->local_port) && in tcp_connect()
693 (cpcb->remote_port == port) && in tcp_connect()
[all …]