CURLOPT_DEBUGFUNCTION.3 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. .\" *
  10. .\" * This software is licensed as described in the file COPYING, which
  11. .\" * you should have received as part of this distribution. The terms
  12. .\" * are also available at http://curl.haxx.se/docs/copyright.html.
  13. .\" *
  14. .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. .\" * copies of the Software, and permit persons to whom the Software is
  16. .\" * furnished to do so, under the terms of the COPYING file.
  17. .\" *
  18. .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. .\" * KIND, either express or implied.
  20. .\" *
  21. .\" **************************************************************************
  22. .\"
  23. .TH CURLOPT_DEBUGFUNCTION 3 "17 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_DEBUGFUNCTION \- debug callback
  26. .SH SYNOPSIS
  27. .nf
  28. #include <curl/curl.h>
  29. typedef enum {
  30. CURLINFO_TEXT = 0,
  31. CURLINFO_HEADER_IN, /* 1 */
  32. CURLINFO_HEADER_OUT, /* 2 */
  33. CURLINFO_DATA_IN, /* 3 */
  34. CURLINFO_DATA_OUT, /* 4 */
  35. CURLINFO_SSL_DATA_IN, /* 5 */
  36. CURLINFO_SSL_DATA_OUT, /* 6 */
  37. CURLINFO_END
  38. } curl_infotype;
  39. int debug_callback(CURL *handle,
  40. curl_infotype type,
  41. char *data,
  42. size_t size,
  43. void *userptr);
  44. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_DEBUGFUNCTION,
  45. debug_callback);
  46. .SH DESCRIPTION
  47. Pass a pointer to your callback function, which should match the prototype
  48. shown above.
  49. \fICURLOPT_DEBUGFUNCTION(3)\fP replaces the standard debug function used when
  50. \fICURLOPT_VERBOSE(3)\fP is in effect. This callback receives debug
  51. information, as specified in the \fItype\fP argument. This function must
  52. return 0. The \fIdata\fP pointed to by the char * passed to this function WILL
  53. NOT be zero terminated, but will be exactly of the \fIsize\fP as told by the
  54. \fIsize\fP argument.
  55. The \fIuserptr\fP argument is the pointer set with \fICURLOPT_DEBUGDATA(3)\fP.
  56. Available curl_infotype values:
  57. .IP CURLINFO_TEXT
  58. The data is informational text.
  59. .IP CURLINFO_HEADER_IN
  60. The data is header (or header-like) data received from the peer.
  61. .IP CURLINFO_HEADER_OUT
  62. The data is header (or header-like) data sent to the peer.
  63. .IP CURLINFO_DATA_IN
  64. The data is protocol data received from the peer.
  65. .IP CURLINFO_DATA_OUT
  66. The data is protocol data sent to the peer.
  67. .IP CURLINFO_SSL_DATA_OUT
  68. The data is SSL/TLS (binary) data sent to the peer.
  69. .IP CURLINFO_SSL_DATA_IN
  70. The data is SSL/TLS (binary) data received from the peer.
  71. .SH DEFAULT
  72. NULL
  73. .SH PROTOCOLS
  74. All
  75. .SH EXAMPLE
  76. http://curl.haxx.se/libcurl/c/debug.html
  77. .SH AVAILABILITY
  78. Always
  79. .SH RETURN VALUE
  80. Returns CURLE_OK
  81. .SH "SEE ALSO"
  82. .BR CURLOPT_VERBOSE "(3), " CURLOPT_DEBUGDATA "(3), "