mirror of
https://github.com/curl/curl.git
synced 2026-08-24 13:03:35 +03:00
hash: make it 'struct Curl_hash'
As internal global names should use captical C. Closes #5906
This commit is contained in:
parent
9b3f888a00
commit
9e90ff0839
13 changed files with 83 additions and 83 deletions
|
|
@ -103,7 +103,7 @@ struct Curl_multi {
|
|||
void *push_userp;
|
||||
|
||||
/* Hostname cache */
|
||||
struct curl_hash hostcache;
|
||||
struct Curl_hash hostcache;
|
||||
|
||||
#ifdef USE_LIBPSL
|
||||
/* PSL cache. */
|
||||
|
|
@ -117,7 +117,7 @@ struct Curl_multi {
|
|||
/* 'sockhash' is the lookup hash for socket descriptor => easy handles (note
|
||||
the pluralis form, there can be more than one easy handle waiting on the
|
||||
same actual socket) */
|
||||
struct curl_hash sockhash;
|
||||
struct Curl_hash sockhash;
|
||||
|
||||
/* Shared connection cache (bundles)*/
|
||||
struct conncache conn_cache;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue