diff options
author | deshevoy <deshevoy@yandex-team.ru> | 2022-02-10 16:46:57 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:57 +0300 |
commit | 28148f76dbfcc644d96427d41c92f36cbf2fdc6e (patch) | |
tree | b83306b6e37edeea782e9eed673d89286c4fef35 /contrib/libs/curl/lib/share.h | |
parent | e988f30484abe5fdeedcc7a5d3c226c01a21800c (diff) | |
download | ydb-28148f76dbfcc644d96427d41c92f36cbf2fdc6e.tar.gz |
Restoring authorship annotation for <deshevoy@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/curl/lib/share.h')
-rw-r--r-- | contrib/libs/curl/lib/share.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/contrib/libs/curl/lib/share.h b/contrib/libs/curl/lib/share.h index de42aeb991..01aa9cda59 100644 --- a/contrib/libs/curl/lib/share.h +++ b/contrib/libs/curl/lib/share.h @@ -25,9 +25,9 @@ #include "curl_setup.h" #include <curl/curl.h> #include "cookie.h" -#include "psl.h" +#include "psl.h" #include "urldata.h" -#include "conncache.h" +#include "conncache.h" /* SalfordC says "A structure member may not be volatile". Hence: */ @@ -45,22 +45,22 @@ struct Curl_share { curl_lock_function lockfunc; curl_unlock_function unlockfunc; void *clientdata; - struct conncache conn_cache; + struct conncache conn_cache; struct Curl_hash hostcache; #if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_COOKIES) struct CookieInfo *cookies; #endif -#ifdef USE_LIBPSL - struct PslCache psl; -#endif +#ifdef USE_LIBPSL + struct PslCache psl; +#endif struct Curl_ssl_session *sslsession; size_t max_ssl_sessions; long sessionage; }; -CURLSHcode Curl_share_lock(struct Curl_easy *, curl_lock_data, - curl_lock_access); -CURLSHcode Curl_share_unlock(struct Curl_easy *, curl_lock_data); +CURLSHcode Curl_share_lock(struct Curl_easy *, curl_lock_data, + curl_lock_access); +CURLSHcode Curl_share_unlock(struct Curl_easy *, curl_lock_data); #endif /* HEADER_CURL_SHARE_H */ |