mirror of
https://github.com/curl/curl.git
synced 2026-05-20 01:06:20 +03:00
test1554: add global initialization and cleanup
This commit is contained in:
parent
dc831260b2
commit
593dcc553a
1 changed files with 5 additions and 1 deletions
|
|
@ -44,10 +44,12 @@ static void my_unlock(CURL *handle, curl_lock_data data, void *useptr)
|
|||
int test(char *URL)
|
||||
{
|
||||
CURL *curl;
|
||||
CURLcode res;
|
||||
CURLcode res = CURLE_OK;
|
||||
CURLSH *share;
|
||||
int i;
|
||||
|
||||
global_init(CURL_GLOBAL_ALL);
|
||||
|
||||
share = curl_share_init();
|
||||
curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_CONNECT);
|
||||
curl_share_setopt(share, CURLSHOPT_LOCKFUNC, my_lock);
|
||||
|
|
@ -77,5 +79,7 @@ int test(char *URL)
|
|||
}
|
||||
|
||||
curl_share_cleanup(share);
|
||||
curl_global_cleanup();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue