diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-12-03 10:37:20 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-12-03 10:37:20 +0000 |
commit | 75145dd75328f9a014a8dcced6db911595985000 (patch) | |
tree | 609d94e0ab37c2c5e704262060fe933dff24fabb /docs | |
parent | d0b97f7e1fc0460080883155ab6ce65e27f59c6d (diff) |
clarify the DEBUGFUNCTION data not being zero terminated
Diffstat (limited to 'docs')
-rw-r--r-- | docs/libcurl/curl_easy_setopt.3 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/libcurl/curl_easy_setopt.3 b/docs/libcurl/curl_easy_setopt.3 index 423d29b7d..9bc836c39 100644 --- a/docs/libcurl/curl_easy_setopt.3 +++ b/docs/libcurl/curl_easy_setopt.3 @@ -175,6 +175,10 @@ curl_debug_callback (CURL *, curl_infotype, char *, size_t, void *);\fP This function will receive debug information if CURLOPT_VERBOSE is enabled. The curl_infotype argument specifies what kind of information it is. This funtion must return 0. + +NOTE: the data pointed to by the char * passed to this function WILL NOT be +zero terminated, but will be exactly of the size as told by the size_t +argument. .TP .B CURLOPT_DEBUGDATA Pass a pointer to whatever you want passed in to your CURLOPT_DEBUGFUNCTION in |