![]() |
![]()
| ![]() |
![]()
NAMECURLOPT_TRAILERFUNCTION - callback for sending trailing headers SYNOPSIS#include <curl.h> int curl_trailer_callback(struct curl_slist ** list, void *userdata); CURLcode curl_easy_setopt(CURL *handle, CURLOPT_TRAILERFUNCTION, DESCRIPTIONPass a pointer to a callback function. This callback function is called once right before sending the final CR LF in an HTTP chunked transfer to fill a list of trailing headers to be sent before finishing the HTTP transfer. You can set the userdata argument with the CURLOPT_TRAILERDATA(3) option. The trailing headers included in the linked list must not be CRLF-terminated, because libcurl adds the appropriate line termination characters after each header item. If you use curl_slist_append(3) to add trailing headers to the curl_slist then libcurl duplicates the strings, and frees the curl_slist once the trailers have been sent. If one of the trailing header fields is not formatted correctly it is ignored and an info message is emitted. The return value can either be CURL_TRAILERFUNC_OK or CURL_TRAILERFUNC_ABORT which would respectively instruct libcurl to either continue with sending the trailers or to abort the request. If you set this option to NULL, then the transfer proceeds as usual without any interruptions. DEFAULTNULL PROTOCOLSThis functionality affects http only EXAMPLEextern size_t read_cb(char *ptr, size_t size, AVAILABILITYAdded in curl 7.64.0 RETURN VALUEcurl_easy_setopt(3) returns a CURLcode indicating success or error. CURLE_OK (0) means everything was OK, non-zero means an error occurred, see libcurl-errors(3). SEE ALSOCURLOPT_TRAILERDATA(3), CURLOPT_WRITEFUNCTION(3)
|