我使用_
java -jar mockserver-netty-5.10.0-jar-with-dependencies.jar -serverPort 1080
现在如果我这样做(没有袜子代理)
curl https://www.google.com
它工作 html 打印
但如果我这样做(使用 socks 代理)
curl --socks5-hostname localhost:1080 https://www.google.com
curl 请求永远卡住了。
我的期望是MockServer
用作 Sock 代理
我究竟做错了什么?
PS:如果我使用 MockServer 作为 http 代理可以正常工作,那么我做错了什么sock
curl -k --proxy localhost:1080 https://www.google.com this works