Searched refs:tcp_connect (Results 1 - 7 of 7) sorted by relevance
/third_party/lwip/src/include/lwip/ |
H A D | altcp.h | 176 #define altcp_connect tcp_connect
|
H A D | tcp.h | 124 * calling tcp_connect(). 470 err_t tcp_connect (struct tcp_pcb *pcb, const ip_addr_t *ipaddr,
|
/third_party/lwip/src/core/ |
H A D | altcp_tcp.c | 280 return tcp_connect(pcb, ipaddr, port, altcp_tcp_connected); in altcp_tcp_connect()
|
H A D | tcp.c | 26 * - tcp_connect() 884 tcp_connect. */ 1210 * The tcp_connect() function returns immediately; it does not wait for 1219 * The tcp_connect() function can return ERR_MEM if no memory is 1221 * enqueued successfully, the tcp_connect() function returns ERR_OK. 1233 tcp_connect(struct tcp_pcb *pcb, const ip_addr_t *ipaddr, u16_t port, function 1243 LWIP_ERROR("tcp_connect: invalid pcb", pcb != NULL, return ERR_ARG); 1244 LWIP_ERROR("tcp_connect: invalid ipaddr", ipaddr != NULL, return ERR_ARG); 1246 LWIP_ERROR("tcp_connect: can only connect from state CLOSED", pcb->state == CLOSED, return ERR_ISCONN); 1250 LWIP_ERROR("tcp_connect [all...] |
/third_party/lwip/src/apps/lwiperf/ |
H A D | lwiperf.c | 428 err = tcp_connect(newpcb, &remote_addr, remote_port, lwiperf_tcp_client_connected); in lwiperf_tx_start_impl()
|
/third_party/lwip/src/api/ |
H A D | api_msg.c | 1354 * TCP callback function if a connection (opened by tcp_connect/lwip_netconn_do_connect) has 1438 err = tcp_connect(msg->conn->pcb.tcp, API_EXPR_REF(msg->msg.bc.ipaddr),
|
/third_party/lwip/test/unit/tcp/ |
H A D | test_tcp.c | 1308 err = tcp_connect(pcb, &netif.gw, 123, NULL); in test_tcp_rto_timeout_syn_sent_impl()
|
Completed in 11 milliseconds