Home
last modified time | relevance | path

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

/third_party/curl/lib/
Dconnect.c563 struct Curl_addrinfo *ai = conn->tempaddr[tempindex]; in ainext()
568 conn->tempaddr[tempindex] = ai; in ainext()
589 struct Curl_addrinfo *ai = conn->tempaddr[tempindex]; in trynextip()
895 conn->ip_addr = conn->tempaddr[i]; in Curl_is_connected()
943 conn->ip_addr = conn->tempaddr[i]; in Curl_is_connected()
977 if(conn->tempaddr[i]) { in Curl_is_connected()
982 Curl_printable_address(conn->tempaddr[i], ipaddress, in Curl_is_connected()
990 conn->timeoutms_per_addr[i] = conn->tempaddr[i]->ai_next == NULL ? in Curl_is_connected()
1373 conn->tempaddr[0] = conn->tempaddr[1] = remotehost->addr; in Curl_connecthost()
1378 conn->tempaddr[0]->ai_next == NULL ? timeout_ms : timeout_ms / 2; in Curl_connecthost()
[all …]
Durldata.h940 struct Curl_addrinfo *tempaddr[2]; /* for happy eyeballs */ member
/third_party/lwip/src/api/
Dsockets.c691 union sockaddr_aligned tempaddr; in lwip_accept() local
702 IPADDR_PORT_TO_SOCKADDR(&tempaddr, &naddr, port); in lwip_accept()
703 if (*addrlen > tempaddr.sa.sa_len) { in lwip_accept()
704 *addrlen = tempaddr.sa.sa_len; in lwip_accept()
706 MEMCPY(addr, &tempaddr, *addrlen); in lwip_accept()