diff options
| author | Zdenek Pavlas <zpavlas@redhat.com> | 2013-03-11 14:57:07 +0100 | 
|---|---|---|
| committer | Kamil Dudka <kdudka@redhat.com> | 2013-03-12 10:58:20 +0100 | 
| commit | 57ccdfa8d2bb6275388223f4676cd623ebd01697 (patch) | |
| tree | 2e36708a0905d011b78582090ec063ea0fbea440 /docs | |
| parent | 491e026ccda0e60975fa6e2e9cf3ccca37e18f7b (diff) | |
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
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/libcurl/curl_global_init.3 | 4 | ||||
| -rw-r--r-- | docs/libcurl/symbols-in-versions | 1 | 
2 files changed, 5 insertions, 0 deletions
diff --git a/docs/libcurl/curl_global_init.3 b/docs/libcurl/curl_global_init.3 index d91e1bdb7..6a0838357 100644 --- a/docs/libcurl/curl_global_init.3 +++ b/docs/libcurl/curl_global_init.3 @@ -70,6 +70,10 @@ Initialise nothing extra. This sets no bit.  .B CURL_GLOBAL_DEFAULT  A sensible default. It will init both SSL and Win32. Right now, this equals  the functionality of the \fBCURL_GLOBAL_ALL\fP mask. +.TP +.B CURL_GLOBAL_ACK_EINTR +When this flag is set, curl will acknowledge EINTR condition when connecting +or when waiting for data.  Otherwise, curl waits until full timeout elapses.  .SH RETURN VALUE  If this function returns non-zero, something went wrong and you cannot use the  other curl functions. diff --git a/docs/libcurl/symbols-in-versions b/docs/libcurl/symbols-in-versions index 1de1aceb7..37b5e277d 100644 --- a/docs/libcurl/symbols-in-versions +++ b/docs/libcurl/symbols-in-versions @@ -614,6 +614,7 @@ CURL_GLOBAL_DEFAULT             7.8  CURL_GLOBAL_NOTHING             7.8  CURL_GLOBAL_SSL                 7.8  CURL_GLOBAL_WIN32               7.8.1 +CURL_GLOBAL_ACK_EINTR           7.30.0  CURL_HTTP_VERSION_1_0           7.9.1  CURL_HTTP_VERSION_1_1           7.9.1  CURL_HTTP_VERSION_NONE          7.9.1  | 
