Closed gh0st42 closed 6 years ago
Found out that I had an old $GOPATH/src/golang.org/x/net
installation. Removing this and letting go rebuild everything seems to fix this. Maybe something for an FAQ. Too bad that go doesn't have real dependency version management yet.
@gh0st42 Thanks, thats weird. I'll just bundle dependencies with dep for now
I just downloaded the newest version from github and build a croc binary myself. So far it only works (send and receive) if local mode is disabled (--no-local). Otherwise it always crashes:
The problem seems to be in
if errJoinGroup := p2.JoinGroup(&ifaces[i], &net.UDPAddr{IP: group, Port: portNum}); errJoinGroup != nil {
ofpeerdiscovery.go
. I tried building the binary with go 1.9 and 1.10. Also skipping certain interfaces like loopback did not help.Oh and my platform is Ubuntu 16.04 amd64. The prebuild binary from the releases page seems to work.