You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey guys,
I don't use your project, but came across your commit here: ae2800d
Based on the comments in this commit, I'm lead to believe that the intent is to only listen on the loopback address(es) when only the port is specified.
If that is the intent, then that code is broken. If not, then ignore me. :)
This is the dumb fix for the face-palm bug reported here:
#9
wherein our attempt to listening on IPv4 and IPv6 loopback interfaces
when available was actually causing us to listen on all interfaces
(ugh).
I'll remove the duplication in the next commit, and also try to
gracefully handle systems which might not have IPv6 interfaces up.
Hey guys,
I don't use your project, but came across your commit here: ae2800d
Based on the comments in this commit, I'm lead to believe that the intent is to only listen on the loopback address(es) when only the port is specified.
If that is the intent, then that code is broken. If not, then ignore me. :)
Here's the relevant net.Listen() example from the golang docs: https://golang.org/pkg/net/#example_Listener
Happy trails!
The text was updated successfully, but these errors were encountered: