Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
CURLMOPT_PUSHFUNCTION(3) | Library Functions Manual | CURLMOPT_PUSHFUNCTION(3) |
NAME
CURLMOPT_PUSHFUNCTION - callback that approves or denies server pushesSYNOPSIS
#include <curl/curl.h>
int curl_push_callback(CURL *parent,
CURL *easy,
size_t num_headers,
struct curl_pushheaders *headers,
void *clientp);
CURLMcode curl_multi_setopt(CURLM *handle, CURLMOPT_PUSHFUNCTION,
curl_push_callback func);
DESCRIPTION
This callback gets called when a new HTTP/2 stream is being pushed by the server (using the PUSH_PROMISE frame). If no push callback is set, all offered pushes are denied automatically.CALLBACK DESCRIPTION
The callback gets its arguments like this:CALLBACK RETURN VALUE
- CURL_PUSH_OK (0)
- The application has accepted the stream and it can now start receiving data, the ownership of the CURL handle has been taken over by the application.
- CURL_PUSH_DENY (1)
- The callback denies the stream and no data reaches the application, the easy handle is destroyed by libcurl.
- CURL_PUSH_ERROROUT (2)
- Returning this code rejects the pushed stream and returns an error back on the parent stream making it get closed with an error. (Added in 7.72.0)
- *
- All other return codes are reserved for future use.
DEFAULT
NULL, no callbackPROTOCOLS
This functionality affects http onlyEXAMPLE
#include <string.h>
/* only allow pushes for filenames starting with "push-" */
int push_callback(CURL *parent,
CURL *easy,
size_t num_headers,
struct curl_pushheaders *headers,
void *clientp)
{
char *headp;
int *transfers = (int *)clientp;
FILE *out;
headp = curl_pushheader_byname(headers, ":path");
if(headp && !strncmp(headp, "/push-", 6)) {
fprintf(stderr, "The PATH is %s\n", headp);
/* save the push here */
out = fopen("pushed-stream", "wb");
/* write to this file */
curl_easy_setopt(easy, CURLOPT_WRITEDATA, out);
(*transfers)++; /* one more */
return CURL_PUSH_OK;
}
return CURL_PUSH_DENY;
}
int main(void)
{
int counter;
CURLM *multi = curl_multi_init();
curl_multi_setopt(multi, CURLMOPT_PUSHFUNCTION, push_callback);
curl_multi_setopt(multi, CURLMOPT_PUSHDATA, &counter);
}
AVAILABILITY
Added in curl 7.44.0RETURN VALUE
Returns CURLM_OK if the option is supported, and CURLM_UNKNOWN_OPTION if not.SEE ALSO
CURLMOPT_PIPELINING(3), CURLMOPT_PUSHDATA(3), CURLOPT_PIPEWAIT(3), RFC75402024-11-21 | libcurl |