From: Daniel Stenberg Date: Thu, 31 May 2001 06:10:25 +0000 (+0000) Subject: the CURL_GLOBAL flags are now used to set what parts to init globally X-Git-Tag: curl-7_8~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=95c94bf658e00c15060d87b052a71b849d6666f3;p=curl the CURL_GLOBAL flags are now used to set what parts to init globally --- diff --git a/include/curl/curl.h b/include/curl/curl.h index d21d08dfa..1df686299 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -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 }