We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 421173f commit 13bd5d4Copy full SHA for 13bd5d4
src/main.rs
@@ -72,11 +72,7 @@ fn main() {
72
.build();
73
} else if options.ipv6 {
74
client = reqwest::blocking::Client::builder()
75
- .local_address(
76
- "2001:0db8:85a3:0000:0000:8a2e:0370:7334"
77
- .parse::<IpAddr>()
78
- .unwrap(),
79
- )
+ .local_address("::1".parse::<IpAddr>().unwrap())
80
81
} else {
82
client = reqwest::blocking::Client::builder().build();
0 commit comments