mirror of
https://github.com/curl/curl.git
synced 2024-11-27 05:50:21 +08:00
the CURL_GLOBAL flags are now used to set what parts to init globally
This commit is contained in:
parent
7f295939d0
commit
95c94bf658
@ -573,9 +573,10 @@ typedef enum {
|
||||
CURLCLOSEPOLICY_LAST /* last, never use this */
|
||||
} curl_closepolicy;
|
||||
|
||||
#define CURL_GLOBAL_NOT_SSL (1<<0)
|
||||
#define CURL_GLOBAL_NOTHING CURL_GLOBAL_NOT_SSL
|
||||
#define CURL_GLOBAL_DEFAULT 0
|
||||
#define CURL_GLOBAL_SSL (1<<0)
|
||||
#define CURL_GLOBAL_ALL (CURL_GLOBAL_SSL)
|
||||
#define CURL_GLOBAL_NOTHING 0
|
||||
#define CURL_GLOBAL_DEFAULT CURL_GLOBAL_ALL
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user