mirror of
https://github.com/curl/curl.git
synced 2026-07-24 13:57:16 +03:00
docs: add dns category to --resolve
This commit adds the dns category to the --resolve command line option, because it can be interpreted as both: a low-level connection option and an option related to the resolving of a hostname. It is also not common for dns options to belong to the connection category and vice versa. --ipv4 and --ipv6 are both good examples. Closes #9229
This commit is contained in:
parent
8beff43559
commit
ce8031d369
2 changed files with 2 additions and 2 deletions
|
|
@ -4,7 +4,7 @@ Long: resolve
|
|||
Arg: <[+]host:port:addr[,addr]...>
|
||||
Help: Resolve the host+port to this address
|
||||
Added: 7.21.3
|
||||
Category: connection
|
||||
Category: connection dns
|
||||
Example: --resolve example.com:443:127.0.0.1 $URL
|
||||
See-also: connect-to alt-svc
|
||||
---
|
||||
|
|
|
|||
|
|
@ -593,7 +593,7 @@ const struct helptxt helptext[] = {
|
|||
CURLHELP_HTTP},
|
||||
{" --resolve <[+]host:port:addr[,addr]...>",
|
||||
"Resolve the host+port to this address",
|
||||
CURLHELP_CONNECTION},
|
||||
CURLHELP_CONNECTION | CURLHELP_DNS},
|
||||
{" --retry <num>",
|
||||
"Retry request if transient problems occur",
|
||||
CURLHELP_CURL},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue