mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 10:27:46 +08:00
52 lines
1.4 KiB
Go
52 lines
1.4 KiB
Go
package libp2p
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/ipfs/kubo/config"
|
|
"github.com/libp2p/go-libp2p"
|
|
"github.com/libp2p/go-libp2p/core/metrics"
|
|
libp2pquic "github.com/libp2p/go-libp2p/p2p/transport/quic"
|
|
"github.com/libp2p/go-libp2p/p2p/transport/tcp"
|
|
"github.com/libp2p/go-libp2p/p2p/transport/websocket"
|
|
|
|
"go.uber.org/fx"
|
|
)
|
|
|
|
func Transports(tptConfig config.Transports) interface{} {
|
|
return func(pnet struct {
|
|
fx.In
|
|
Fprint PNetFingerprint `optional:"true"`
|
|
}) (opts Libp2pOpts, err error) {
|
|
privateNetworkEnabled := pnet.Fprint != nil
|
|
|
|
if tptConfig.Network.TCP.WithDefault(true) {
|
|
opts.Opts = append(opts.Opts, libp2p.Transport(tcp.NewTCPTransport))
|
|
}
|
|
|
|
if tptConfig.Network.Websocket.WithDefault(true) {
|
|
opts.Opts = append(opts.Opts, libp2p.Transport(websocket.New))
|
|
}
|
|
|
|
if tptConfig.Network.QUIC.WithDefault(!privateNetworkEnabled) {
|
|
if privateNetworkEnabled {
|
|
// QUIC was force enabled while the private network was turned on.
|
|
// Fail and tell the user.
|
|
return opts, fmt.Errorf(
|
|
"The QUIC transport does not support private networks. " +
|
|
"Please disable Swarm.Transports.Network.QUIC.",
|
|
)
|
|
}
|
|
opts.Opts = append(opts.Opts, libp2p.Transport(libp2pquic.NewTransport))
|
|
}
|
|
|
|
return opts, nil
|
|
}
|
|
}
|
|
|
|
func BandwidthCounter() (opts Libp2pOpts, reporter *metrics.BandwidthCounter) {
|
|
reporter = metrics.NewBandwidthCounter()
|
|
opts.Opts = append(opts.Opts, libp2p.BandwidthReporter(reporter))
|
|
return opts, reporter
|
|
}
|