We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
socks5Proxy 是通过 url.Parse(StringValue(runtime.Socks5Proxy)) 所得,Socks5Proxy 如果传的是 socks5://user:password@host:port的格式,那么 socks5Proxy.String() 返回是同样的内容,但是proxy.SOCKS5 方法的第二个参数需要的地址,就是 host:port . 所以这里应该用的是 socks5Proxy.Host
url.Parse(StringValue(runtime.Socks5Proxy))
Socks5Proxy
socks5://user:password@host:port
proxy.SOCKS5
host:port
socks5Proxy.Host
tea/tea/tea.go
Lines 467 to 472 in 2b0e131
The text was updated successfully, but these errors were encountered:
No branches or pull requests
socks5Proxy 是通过
url.Parse(StringValue(runtime.Socks5Proxy))
所得,Socks5Proxy
如果传的是socks5://user:password@host:port
的格式,那么 socks5Proxy.String() 返回是同样的内容,但是proxy.SOCKS5
方法的第二个参数需要的地址,就是host:port
.所以这里应该用的是
socks5Proxy.Host
tea/tea/tea.go
Lines 467 to 472 in 2b0e131
The text was updated successfully, but these errors were encountered: