curl-library
freeing up handles
From: emerson, jeff <emerson_jeff_at_EMC.com>
Date: Tue, 13 Apr 2004 13:59:27 -0400
Date: Tue, 13 Apr 2004 13:59:27 -0400
Hi, I'm new to CURL and have come across a problem. When performing a
curl_easy_perform under windows, I see that process handles are incremented,
but never released. Is this a bug, or am I doing something wrong? Thanks in
advance. Jeff
curl_global_init(CURL_GLOBAL_ALL);
curl = curl_easy_init();
while(1)
{
curl_easy_setopt(curl, CURLOPT_URL, "http://tester/j.asp
<http://tester/j.asp> ");
res = curl_easy_perform(curl);
Sleep(10000);
}
curl_easy_cleanup(curl);
curl_global_cleanup();
Received on 2004-04-13