Searched refs:tcp_bind (Results 1 - 7 of 7) sorted by relevance

/seL4-camkes-master/projects/lwip/src/include/lwip/
H A Daltcp.h170 #define altcp_bind tcp_bind
H A Dtcp.h458 err_t tcp_bind (struct tcp_pcb *pcb, const ip_addr_t *ipaddr,
/seL4-camkes-master/projects/lwip/src/core/
H A Daltcp_tcp.c262 return tcp_bind(pcb, ipaddr, port);
H A Dtcp.c23 * - tcp_bind()
661 tcp_bind(struct tcp_pcb *pcb, const ip_addr_t *ipaddr, u16_t port) function
678 LWIP_ERROR("tcp_bind: invalid ipaddr", ipaddr != NULL, return ERR_ARG);
681 LWIP_ERROR("tcp_bind: invalid pcb", pcb != NULL, return ERR_ARG);
683 LWIP_ERROR("tcp_bind: can only bind in state CLOSED", pcb->state == CLOSED, return ERR_VAL);
748 LWIP_DEBUGF(TCP_DEBUG, ("tcp_bind: bind to port %"U16_F"\n", port));
799 * to a local port with the tcp_bind() function.
1934 * The pcb is not put on any list until binding using tcp_bind().
1938 * PCBs are put on. Port reservation using tcp_bind() is implemented but
1954 * The pcb is not put on any list until binding using tcp_bind()
[all...]
/seL4-camkes-master/projects/lwip/src/apps/lwiperf/
H A Dlwiperf.c715 err = tcp_bind(pcb, local_addr, local_port);
/seL4-camkes-master/projects/lwip/src/api/
H A Dapi_msg.c1235 err = tcp_bind(msg->conn->pcb.tcp, API_EXPR_REF(msg->msg.bc.ipaddr), msg->msg.bc.port);
/seL4-camkes-master/projects/lwip/test/unit/tcp/
H A Dtest_tcp.c120 err = tcp_bind(pcb, &netif.ip_addr, 1234);

Completed in 62 milliseconds