From 57ccdfa8d2bb6275388223f4676cd623ebd01697 Mon Sep 17 00:00:00 2001 From: Zdenek Pavlas Date: Mon, 11 Mar 2013 14:57:07 +0100 Subject: curl_global_init: accept the CURL_GLOBAL_ACK_EINTR flag The flag can be used in pycurl-based applications where using the multi interface would not be acceptable because of the performance lost caused by implementing the select() loop in python. Bug: http://curl.haxx.se/bug/view.cgi?id=1168 Downstream Bug: https://bugzilla.redhat.com/919127 --- include/curl/curl.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/curl/curl.h b/include/curl/curl.h index 50f40435e..0b2b7ea44 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -2015,6 +2015,7 @@ typedef enum { #define CURL_GLOBAL_ALL (CURL_GLOBAL_SSL|CURL_GLOBAL_WIN32) #define CURL_GLOBAL_NOTHING 0 #define CURL_GLOBAL_DEFAULT CURL_GLOBAL_ALL +#define CURL_GLOBAL_ACK_EINTR (1<<2) /***************************************************************************** -- cgit v1.2.3