File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ namespace duckdb
14
14
// Function to get the download code for the Tranco list
15
15
std::string GetTrancoDownloadCode (char *date)
16
16
{
17
- CURL *curl = GetCurlHandler ();
17
+ CURL *curl = CreateCurlHandler ();
18
18
CURLcode res;
19
19
std::string readBuffer;
20
20
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ namespace duckdb
29
29
#endif
30
30
}
31
31
32
- CURL *GetCurlHandler ()
32
+ CURL *CreateCurlHandler ()
33
33
{
34
34
CURL *curl = curl_easy_init ();
35
35
if (!curl)
@@ -98,7 +98,7 @@ namespace duckdb
98
98
99
99
std::string DownloadPublicSuffixList ()
100
100
{
101
- CURL *curl = GetCurlHandler ();
101
+ CURL *curl = CreateCurlHandler ();
102
102
CURLcode res;
103
103
std::string readBuffer;
104
104
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace duckdb
9
9
namespace netquack
10
10
{
11
11
// Function to get a CURL handler
12
- CURL *GetCurlHandler ();
12
+ CURL *CreateCurlHandler ();
13
13
14
14
// Function to log messages with a specified log level
15
15
void LogMessage (const std::string &level, const std::string &message);
You can’t perform that action at this time.
0 commit comments