mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 18:37:45 +08:00
32 lines
779 B
Go
32 lines
779 B
Go
package libp2p
|
|
|
|
import (
|
|
"math/rand"
|
|
"time"
|
|
|
|
"github.com/libp2p/go-libp2p-core/discovery"
|
|
"github.com/libp2p/go-libp2p-core/host"
|
|
disc "github.com/libp2p/go-libp2p-discovery"
|
|
|
|
"github.com/ipfs/go-ipfs/core/node/helpers"
|
|
"go.uber.org/fx"
|
|
)
|
|
|
|
func TopicDiscovery() interface{} {
|
|
return func(mctx helpers.MetricsCtx, lc fx.Lifecycle, host host.Host, cr BaseIpfsRouting) (service discovery.Discovery, err error) {
|
|
baseDisc := disc.NewRoutingDiscovery(cr)
|
|
minBackoff, maxBackoff := time.Second*60, time.Hour
|
|
rng := rand.New(rand.NewSource(rand.Int63()))
|
|
d, err := disc.NewBackoffDiscovery(
|
|
baseDisc,
|
|
disc.NewExponentialBackoff(minBackoff, maxBackoff, disc.FullJitter, time.Second, 5.0, 0, rng),
|
|
)
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return d, nil
|
|
}
|
|
}
|