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
When i Listen on ":8080" by udp with reuseport, following error occurs.
$ cat e.go package main import ( "fmt" reuse "github.com/jbenet/go-reuseport" ) func main() { _, err := reuse.ListenPacket("udp", ":8080") fmt.Println(err) } $ go run e.go address family not supported by protocol
This breaks compatibility with golang's standard net.ListenPacket.
In Golang standard, they are guessing address family from network and wildcard address ( http://golang.org/src/net/ipsock_posix.go#L72)
The text was updated successfully, but these errors were encountered:
@hodduc good catch! have a suggested diff? i can take a look this weekend, but cant before
Sorry, something went wrong.
Add a test for #7
1e1d427
8e4e73d
Merge pull request #57 from libp2p/test/7
f8dd180
Adds a test for #7
Fixed by #56 and #57.
anacrolix
No branches or pull requests
When i Listen on ":8080" by udp with reuseport, following error occurs.
This breaks compatibility with golang's standard net.ListenPacket.
In Golang standard, they are guessing address family from network and wildcard address ( http://golang.org/src/net/ipsock_posix.go#L72)
The text was updated successfully, but these errors were encountered: