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
Currently even if I specify
server := &ssh.Server{ Addr: "0.0.0.0:2222" }
Server will listen at both ipv4 and ipv6. Because line server.go#L330 has protocol tcp.
ipv4
ipv6
tcp
It would be nice to have an option to set tcp4 instead.
tcp4
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently even if I specify
Server will listen at both
ipv4
andipv6
. Because line server.go#L330 has protocoltcp
.It would be nice to have an option to set
tcp4
instead.The text was updated successfully, but these errors were encountered: