CURLMOPT_PUSHFUNCTION - Online Linux Manual PageSection : 3
Updated : October 31, 2021
Source : libcurl 7.82.0
Note : curl_multi_setopt options

NAMECURLMOPT_PUSHFUNCTION − callback that approves or denies server pushes

SYNOPSIS#include <curl/curl.h> char *curl_pushheader_bynum(struct curl_pushheaders *h, size_t num); char *curl_pushheader_byname(struct curl_pushheaders *h, const char *name); int curl_push_callback(CURL *parent, CURL *easy, size_t num_headers, struct curl_pushheaders *headers, void *userp); CURLMcode curl_multi_setopt(CURLM *handle, CURLMOPT_PUSHFUNCTION, curl_push_callback func);

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 will be 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 duphandle()d 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 will be provided in the header callback as usual. userp is the pointer set with CURLMOPT_PUSHDATA(3) If the callback returns CURL_PUSH_OK, the 'easy' handle will be 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. The normal response headers will be passed to the header callback for pushed streams just as for normal streams. curl_pushheader_bynum Returns the header at index 'num' (or NULL). The returned pointer points to a "name:value" string that will be freed when this callback returns. curl_pushheader_byname Returns the value for the given header name (or NULL). This is a shortcut so that the application does not have to loop through all headers to find the one it is interested in. The data pointed will be freed when this callback returns. If more than one header field use the same name, this returns only the first one.

CALLBACK RETURN VALUECURL_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 for this will reach the application, the easy handle will be destroyed by libcurl. CURL_PUSH_ERROROUT (2) Returning this will reject the pushed stream and return 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.

DEFAULTNULL, no callback

PROTOCOLSHTTP(S) (HTTP/2 only)

EXAMPLE/* only allow pushes for file names starting with "push-" */ int push_callback(CURL *parent, CURL *easy, size_t num_headers, struct curl_pushheaders *headers, void *userp) { char *headp; int *transfers = (int *)userp; 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; } curl_multi_setopt(multi, CURLMOPT_PUSHFUNCTION, push_callback); curl_multi_setopt(multi, CURLMOPT_PUSHDATA, &counter);

AVAILABILITYAdded in 7.44.0

RETURN VALUEReturns CURLM_OK if the option is supported, and CURLM_UNKNOWN_OPTION if not.

SEE ALSOCURLMOPT_PUSHDATA(3), CURLMOPT_PIPELINING (3), CURLOPT_PIPEWAIT (3)," RFC7540
0
Johanes Gumabo
Data Size   :   11,450 byte
man-CURLMOPT_PUSHFUNCTION.3Build   :   2024-12-29, 07:25   :  
Visitor Screen   :   x
Visitor Counter ( page / site )   :   5 / 257,116
Visitor ID   :     :  
Visitor IP   :   3.137.177.116   :  
Visitor Provider   :   AMAZON-02   :  
Provider Position ( lat x lon )   :   39.962500 x -83.006100   :   x
Provider Accuracy Radius ( km )   :   1000   :  
Provider City   :   Columbus   :  
Provider Province   :   Ohio ,   :   ,
Provider Country   :   United States   :  
Provider Continent   :   North America   :  
Visitor Recorder   :   Version   :  
Visitor Recorder   :   Library   :  
Online Linux Manual Page   :   Version   :   Online Linux Manual Page - Fedora.40 - march=x86-64 - mtune=generic - 24.12.29
Online Linux Manual Page   :   Library   :   lib_c - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Online Linux Manual Page   :   Library   :   lib_m - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Data Base   :   Version   :   Online Linux Manual Page Database - 24.04.13 - march=x86-64 - mtune=generic - fedora-38
Data Base   :   Library   :   lib_c - 23.02.07 - march=x86-64 - mtune=generic - fedora.36

Very long time ago, I have the best tutor, Wenzel Svojanovsky . If someone knows the email address of Wenzel Svojanovsky , please send an email to johanes_gumabo@yahoo.co.id .
If error, please print screen and send to johanes_gumabo@yahoo.co.id
Under development. Support me via PayPal.

ERROR : Need New Coding :         (rof_nr_x|149|CURLMOPT_PUSHFUNCTION.3|113|\n", headp);| fprintf(stderr, "The PATH is %s\\n", headp); )