4535122a06
- prism start command - more configs for prism when assembling the pieces - cluster notifies on membership change, determines hash range, announces hashes
24 lines
391 B
Go
24 lines
391 B
Go
package dht
|
|
|
|
import (
|
|
"net"
|
|
"testing"
|
|
|
|
"github.com/lbryio/reflector.go/dht/bits"
|
|
)
|
|
|
|
func TestBootstrapPing(t *testing.T) {
|
|
b := NewBootstrapNode(bits.Rand(), 10, bootstrapDefaultRefreshDuration)
|
|
|
|
listener, err := net.ListenPacket(Network, "127.0.0.1:54320")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
err = b.Connect(listener.(*net.UDPConn))
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
b.Shutdown()
|
|
}
|