Open Shaokun-X opened 1 year ago
Also it is not possible to pass the IPv6 address directly:
$ plow -n 10 "http://[::1]:8080/api/endpoint"
Error:
10 "couldn't find DNS entries for the given domain. Try using DialDualStack"
Thank you for your feedback. Integrating IPv6 with the proxy functionality in fasthttp might be somewhat challenging and could require substantial modifications. I will think about how to implement this in a more refined manner.
Hi there, thanks for your amazing work! I recently found that plow doesn't seem to be able to resolve
localhost
to IPv6 address if IPv4 failed.What I have observed
I have an endpoint that only allows IPv6 access:
If I use
plow
, it drops the requests when it doesn't manage to connect to the IPv4 address127.0.0.1
:What I expect
plow
can try to connect to IPv6 address when the IPv4 is refused while usinglocalhost
, likecurl
doesMy setup