socks5h ensures, that DNS requests are also proxied

This commit is contained in:
Craeckie 2021-04-14 12:00:44 +02:00
parent 4bbb31ea64
commit 75846141f4
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ FLAGS:
OPTIONS:
-j, --jobs <jobs> Parallel download jobs [default: 1]
-o, --output <output> Output directory
-p, --proxy <proxy> Proxy, e.g. socks5://127.0.0.1:1080 [default: ""]
-p, --proxy <proxy> Proxy, e.g. socks5h://127.0.0.1:1080 [default: ""]
```
### .iliasignore

View File

@ -654,7 +654,7 @@ struct Opt {
#[structopt(short, long, default_value = "1")]
jobs: usize,
/// Proxy, e.g. socks5://127.0.0.1:1080
/// Proxy, e.g. socks5h://127.0.0.1:1080
#[structopt(short, long, default_value = "")]
proxy: String,
}