diff options
author | Anders Bakken <agbakken@gmail.com> | 2018-01-30 16:33:51 -0800 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2018-02-20 04:24:28 -0500 |
commit | 50d1b3379a818df00c6382d68e2e39977cc96cd6 (patch) | |
tree | e792d9a61262b0ac547fd5b301c0150dbc3c7417 /docs/cmdline-opts | |
parent | e77f0e5a5a8161f103d8fbd3ed335345703c6e1f (diff) |
CURLOPT_RESOLVE: Add support for multiple IP addresses per entry
This enables users to preresolve but still take advantage of happy
eyeballs and trying multiple addresses if some are not connecting.
Ref: https://github.com/curl/curl/pull/2260
Diffstat (limited to 'docs/cmdline-opts')
-rw-r--r-- | docs/cmdline-opts/resolve.d | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/cmdline-opts/resolve.d b/docs/cmdline-opts/resolve.d index 91539b8e9..9e1457b5e 100644 --- a/docs/cmdline-opts/resolve.d +++ b/docs/cmdline-opts/resolve.d @@ -1,5 +1,5 @@ Long: resolve -Arg: <host:port:address> +Arg: <host:port:address[,address]...> Help: Resolve the host+port to this address Added: 7.21.3 --- @@ -16,4 +16,6 @@ is set to make curl use another IP version. Support for providing the IP address within [brackets] was added in 7.57.0. +Support for providing multiple IP addresses per entry was added in 7.59.0. + This option can be used many times to add many host names to resolve. |