Skip to content

Commit d7a7386

Browse files
committed
add support for QUIC in autonat service
License: MIT Signed-off-by: vyzo <vyzo@hackzen.org>
1 parent f2192bf commit d7a7386

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

core/core.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,12 @@ func (n *IpfsNode) startOnlineServicesWithHost(ctx context.Context, host p2phost
481481
}
482482

483483
if cfg.Swarm.EnableAutoNATService {
484-
svc, err := autonat.NewAutoNATService(ctx, host)
484+
var opts []libp2p.Option
485+
if cfg.Experimental.QUIC {
486+
opts = append(opts, libp2p.DefaultTransports, libp2p.Transport(quic.NewTransport))
487+
}
488+
489+
svc, err := autonat.NewAutoNATService(ctx, host, opts...)
485490
if err != nil {
486491
return err
487492
}

0 commit comments

Comments
 (0)