CURLOPT_RESOLVE.3 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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_RESOLVE 3 "19 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_RESOLVE \- provide custom host name to IP address resolves
  26. .SH SYNOPSIS
  27. .nf
  28. #include <curl/curl.h>
  29. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_RESOLVE,
  30. struct curl_slist *hosts);
  31. .SH DESCRIPTION
  32. Pass a pointer to a linked list of strings with host name resolve information
  33. to use for requests with this handle. The linked list should be a fully valid
  34. list of \fBstruct curl_slist\fP structs properly filled in. Use
  35. \fIcurl_slist_append(3)\fP to create the list and \fIcurl_slist_free_all(3)\fP
  36. to clean up an entire list.
  37. Each single name resolve string should be written using the format
  38. HOST:PORT:ADDRESS where HOST is the name libcurl will try to resolve, PORT is
  39. the port number of the service where libcurl wants to connect to the HOST and
  40. ADDRESS is the numerical IP address. If libcurl is built to support IPv6,
  41. ADDRESS can of course be either IPv4 or IPv6 style addressing.
  42. This option effectively pre-populates the DNS cache with entries for the
  43. host+port pair so redirects and everything that operations against the
  44. HOST+PORT will instead use your provided ADDRESS. Addresses to set with
  45. \fICURL_RESOLVE\fP will not time-out from the DNS cache like ordinary
  46. entries.
  47. You can remove names from the DNS cache again, to stop providing these fake
  48. resolves, by including a string in the linked list that uses the format
  49. \&"-HOST:PORT". The host name must be prefixed with a dash, and the host name
  50. and port number must exactly match what was already added previously.
  51. .SH DEFAULT
  52. NULL
  53. .SH PROTOCOLS
  54. All
  55. .SH EXAMPLE
  56. TODO
  57. .SH AVAILABILITY
  58. Added in 7.21.3
  59. .SH RETURN VALUE
  60. Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
  61. .SH "SEE ALSO"
  62. .BR CURLOPT_IPRESOLVE "(3), " CURLOPT_DNS_CACHE_TIMEOUT "(3), "