CURLOPT_DEBUGDATA (3) Linux Manual Page
CURLOPT_DEBUGDATA – custom pointer for debug callback
Synopsis
#include <curl/curl.h>
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_DEBUGDATA, void *pointer);
Description
Pass a pointer to whatever you want passed in to your CURLOPT_DEBUGFUNCTION(3) in the last void * argument. This pointer is not used by libcurl, it is only passed to the callback.
Default
NULL
Protocols
All
Example
http://curl.haxx.se/libcurl/c/debug.html
Availability
Always
Return Value
Returns CURLE_OK
See Also
CURLOPT_STDERR(3), CURLOPT_DEBUGFUNCTION(3),
