CURLOPT_RESOLVER_START_FUNCTION.3 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2021, 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 https://curl.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_RESOLVER_START_FUNCTION 3 "14 Feb 2018" "libcurl 7.59.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_RESOLVER_START_FUNCTION \- callback called before a new name resolve is started
  26. .SH SYNOPSIS
  27. .nf
  28. #include <curl/curl.h>
  29. int resolver_start_cb(void *resolver_state, void *reserved, void *userdata);
  30. CURLcode curl_easy_setopt(CURL *handle,
  31. CURLOPT_RESOLVER_START_FUNCTION,
  32. resolver_start_cb);
  33. .SH DESCRIPTION
  34. Pass a pointer to your callback function, which should match the prototype
  35. shown above.
  36. This callback function gets called by libcurl every time before a new resolve
  37. request is started.
  38. \fIresolver_state\fP points to a backend-specific resolver state. Currently
  39. only the ares resolver backend has a resolver state. It can be used to set up
  40. any desired option on the ares channel before it's used, for example setting up
  41. socket callback options.
  42. \fIreserved\fP is reserved.
  43. \fIuserdata\fP is the user pointer set with the
  44. \fICURLOPT_RESOLVER_START_DATA(3)\fP option.
  45. The callback must return 0 on success. Returning a non-zero value will cause
  46. the resolve to fail.
  47. .SH DEFAULT
  48. NULL (No callback)
  49. .SH PROTOCOLS
  50. All
  51. .SH EXAMPLE
  52. .nf
  53. static int resolver_start_cb(void *resolver_state, void *reserved,
  54. void *userdata)
  55. {
  56. (void)reserved;
  57. printf("Received resolver_state=%p userdata=%p\\n",
  58. resolver_state, userdata);
  59. return 0;
  60. }
  61. CURL *curl = curl_easy_init();
  62. if(curl) {
  63. curl_easy_setopt(curl, CURLOPT_RESOLVER_START_FUNCTION, resolver_start_cb);
  64. curl_easy_setopt(curl, CURLOPT_RESOLVER_START_DATA, curl);
  65. curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
  66. curl_easy_perform(curl);
  67. curl_easy_cleanup(curl);
  68. }
  69. .fi
  70. .SH AVAILABILITY
  71. Added in 7.59.0
  72. .SH RETURN VALUE
  73. Returns CURLE_OK
  74. .SH "SEE ALSO"
  75. .BR CURLOPT_RESOLVER_START_DATA "(3) "