]> granicus.if.org Git - curl/commitdiff
the CURL_GLOBAL flags are now used to set what parts to init globally
authorDaniel Stenberg <daniel@haxx.se>
Thu, 31 May 2001 06:10:25 +0000 (06:10 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 31 May 2001 06:10:25 +0000 (06:10 +0000)
include/curl/curl.h

index d21d08dfa5b9c8d9f315ee213893d53ac38242c6..1df6862993254fd89c0e40c42e8bb967374bf64f 100644 (file)
@@ -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
 }