mirror of
https://github.com/curl/curl.git
synced 2026-08-24 18:33:34 +03:00
upkeep: add a connection upkeep API: curl_easy_conn_upkeep()
Add functionality so that protocols can do custom keepalive on their connections, when an external API function is called. Add docs for the new options in 7.62.0 Closes #1641
This commit is contained in:
parent
6684653b68
commit
7b655fcbad
15 changed files with 280 additions and 2 deletions
|
|
@ -16,7 +16,7 @@ none
|
|||
# The VMS and OS/400 builds extract the CURL_EXTERN protos and use in
|
||||
# the build. We break binary compatibility by changing order. Only add
|
||||
# new entries last or bump the SONAME.
|
||||
#
|
||||
#
|
||||
<name>
|
||||
Verify CURL_EXTERN order
|
||||
</name>
|
||||
|
|
@ -75,6 +75,7 @@ CURL_EXTERN CURL *curl_easy_duphandle(CURL *curl);
|
|||
CURL_EXTERN void curl_easy_reset(CURL *curl);
|
||||
CURL_EXTERN CURLcode curl_easy_recv(CURL *curl, void *buffer, size_t buflen,
|
||||
CURL_EXTERN CURLcode curl_easy_send(CURL *curl, const void *buffer,
|
||||
CURL_EXTERN CURLcode curl_easy_conn_upkeep(CURL *curl);
|
||||
CURL_EXTERN int curl_mprintf(const char *format, ...);
|
||||
CURL_EXTERN int curl_mfprintf(FILE *fd, const char *format, ...);
|
||||
CURL_EXTERN int curl_msprintf(char *buffer, const char *format, ...);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue