curl/docs/libcurl/opts/CURLOPT_TRAILERDATA.md
Daniel Stenberg 8c1d9378ac
curldown: make 'added-in:' a mandatory header field
- generate AVAILABILITY manpage sections automatically - for consistent
  wording

- allows us to double-check against other documumentation (symbols-in-versions
  etc)

- enables proper automation/scripting based on this data

- lots of them were wrong or missing in the manpages

- several of them repeated (sometimes mismatching) backend support info

Add test 1488 to verify "added-in" version numbers against
symbols-in-versions.

Closes #14217
2024-07-18 18:04:09 +02:00

792 B

c SPDX-License-Identifier Title Section Source See-also Protocol Added-in
Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. curl CURLOPT_TRAILERDATA 3 libcurl
CURLOPT_TRAILERFUNCTION (3)
CURLOPT_WRITEFUNCTION (3)
HTTP
7.64.0

NAME

CURLOPT_TRAILERDATA - pointer passed to trailing headers callback

SYNOPSIS

#include <curl.h>

CURLcode curl_easy_setopt(CURL *handle, CURLOPT_TRAILERDATA, void *userdata);

DESCRIPTION

Data pointer to be passed to the HTTP trailer callback function.

DEFAULT

NULL

EXAMPLE

struct MyData {
  void *custom;
};

int main(void)
{
  CURL *curl = curl_easy_init();
  if(curl) {
    struct MyData data;
    curl_easy_setopt(curl, CURLOPT_TRAILERDATA, &data);
  }
}

RETURN VALUE

Returns CURLE_OK.