mirror of
https://github.com/curl/curl.git
synced 2026-07-24 18:57:18 +03:00
curl_easy_upkeep: removed 'conn' from the name
... including the associated option. Fixes #2951 Closes #2952
This commit is contained in:
parent
7b655fcbad
commit
17ca0ccff4
13 changed files with 32 additions and 32 deletions
|
|
@ -1869,7 +1869,7 @@ typedef enum {
|
|||
CINIT(UPLOAD_BUFFERSIZE, LONG, 280),
|
||||
|
||||
/* Time in ms between connection upkeep calls for long-lived connections. */
|
||||
CINIT(CONN_UPKEEP_INTERVAL_MS, LONG, 281),
|
||||
CINIT(UPKEEP_INTERVAL_MS, LONG, 281),
|
||||
|
||||
CURLOPT_LASTENTRY /* the last unused */
|
||||
} CURLoption;
|
||||
|
|
|
|||
|
|
@ -97,13 +97,13 @@ CURL_EXTERN CURLcode curl_easy_send(CURL *curl, const void *buffer,
|
|||
|
||||
|
||||
/*
|
||||
* NAME curl_easy_conn_upkeep()
|
||||
* NAME curl_easy_upkeep()
|
||||
*
|
||||
* DESCRIPTION
|
||||
*
|
||||
* Performs connection upkeep for the given session handle.
|
||||
*/
|
||||
CURL_EXTERN CURLcode curl_easy_conn_upkeep(CURL *curl);
|
||||
CURL_EXTERN CURLcode curl_easy_upkeep(CURL *curl);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue