diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/curl/curl.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 7cab0a16c..a592a0e4d 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -791,6 +791,11 @@ typedef enum { SSL backends where such behavior is present. */ #define CURLSSLOPT_NO_REVOKE (1<<1) +/* The default connection attempt delay in milliseconds for happy eyeballs. + CURLOPT_HAPPY_EYEBALLS_TIMEOUT.3 and happy-eyeballs-timeout-ms.d document + this value, keep them in sync. */ +#define CURL_HET_DEFAULT 200L + #ifndef CURL_NO_OLDIES /* define this to test if your app builds with all the obsolete stuff removed! */ @@ -1825,6 +1830,9 @@ typedef enum { seconds since 1 Jan 1970. */ CINIT(TIMEVALUE_LARGE, OFF_T, 270), + /* Head start in milliseconds to give happy eyeballs. */ + CINIT(HAPPY_EYEBALLS_TIMEOUT, LONG, 271), + CURLOPT_LASTENTRY /* the last unused */ } CURLoption; |
