![]() |
![]()
| ![]() |
![]()
NAMECURLMOPT_PUSHFUNCTION - callback that approves or denies server pushes SYNOPSIS#include <curl/curl.h> int curl_push_callback(CURL *parent, DESCRIPTIONThis 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 DESCRIPTIONThe callback gets its arguments like this: parent is the handle of the stream on which this push arrives. The new handle has been duplicated from the parent, meaning that it has gotten all its options inherited. It is then up to the application to alter any options if desired. easy is a newly created handle that represents this upcoming transfer. num_headers is the number of name+value pairs that was received and can be accessed headers is a handle used to access push headers using the accessor functions described below. This only accesses and provides the PUSH_PROMISE headers, the normal response headers are provided in the header callback as usual. clientp is the pointer set with CURLMOPT_PUSHDATA(3) If the callback returns CURL_PUSH_OK, the new easy handle is added to the multi handle, the callback must not do that by itself. The callback can access PUSH_PROMISE headers with two accessor functions. These functions can only be used from within this callback and they can only access the PUSH_PROMISE headers: curl_pushheader_byname(3) and curl_pushheader_bynum(3). The normal response headers are passed to the header callback for pushed streams just as for normal streams. The header fields can also be accessed with curl_easy_header(3), introduced in later libcurl versions. CALLBACK RETURN VALUE
DEFAULTNULL, no callback PROTOCOLSThis functionality affects http only EXAMPLE#include <string.h> /* only allow pushes for filenames starting with "push-" */ int push_callback(CURL *parent, AVAILABILITYAdded in curl 7.44.0 RETURN VALUEcurl_multi_setopt(3) returns a CURLMcode indicating success or error. CURLM_OK (0) means everything was OK, non-zero means an error occurred, see libcurl-errors(3). SEE ALSOCURLMOPT_PIPELINING(3), CURLMOPT_PUSHDATA(3), CURLOPT_PIPEWAIT(3), RFC7540
|