Unused function
Closes #21774
return CURLE_OUT_OF_MEMORY;
}
-struct Curl_dns_entry *Curl_dns_entry_link(struct Curl_easy *data,
- struct Curl_dns_entry *dns)
-{
- if(!dns)
- return NULL;
- else {
- struct Curl_dnscache *dnscache = dnscache_get(data);
- dnscache_lock(data, dnscache);
- dns->refcount++;
- dnscache_unlock(data, dnscache);
- return dns;
- }
-}
-
/*
* Curl_dns_entry_unlink() releases a reference to the given cached DNS entry.
* When the reference count reaches 0, the entry is destroyed. It is important
struct Curl_https_rrinfo *hinfo);
#endif /* USE_HTTPSRR */
-/* Increase the ref counter and return it for storing in another place.
- * May be called with NULL, in which case it returns NULL. */
-struct Curl_dns_entry *Curl_dns_entry_link(struct Curl_easy *data,
- struct Curl_dns_entry *dns);
-
/* unlink a dns entry, frees all resources if it was the last reference.
* Always clears `*pdns`` */
void Curl_dns_entry_unlink(struct Curl_easy *data,