@@ -56,6 +56,7 @@ import (
56
56
libp2p "gx/ipfs/QmVvV8JQmmqPCwXAaesWJPheUiEFQJ9HWRhWhuFuxVQxpR/go-libp2p"
57
57
discovery "gx/ipfs/QmVvV8JQmmqPCwXAaesWJPheUiEFQJ9HWRhWhuFuxVQxpR/go-libp2p/p2p/discovery"
58
58
p2pbhost "gx/ipfs/QmVvV8JQmmqPCwXAaesWJPheUiEFQJ9HWRhWhuFuxVQxpR/go-libp2p/p2p/host/basic"
59
+ rhost "gx/ipfs/QmVvV8JQmmqPCwXAaesWJPheUiEFQJ9HWRhWhuFuxVQxpR/go-libp2p/p2p/host/routed"
59
60
identify "gx/ipfs/QmVvV8JQmmqPCwXAaesWJPheUiEFQJ9HWRhWhuFuxVQxpR/go-libp2p/p2p/protocol/identify"
60
61
quic "gx/ipfs/QmWY1pHdRP1rA2ifUuCu1ZwFJ8ZzpSEcgXsu9haH21AYKd/go-libp2p-quic-transport"
61
62
circuit "gx/ipfs/QmWxCQ66YzAb24Py5D3qeDJcVTF4aW9AeAmppQ7FhQZxgZ/go-libp2p-circuit"
@@ -275,7 +276,7 @@ func (n *IpfsNode) startOnlineServices(ctx context.Context, routingOption Routin
275
276
276
277
n .PeerHost = peerhost
277
278
278
- if err := n .startOnlineServicesWithHost (ctx , peerhost , pubsub , ipnsps ); err != nil {
279
+ if err := n .startOnlineServicesWithHost (ctx , peerhost , routingOption , pubsub , ipnsps ); err != nil {
279
280
return err
280
281
}
281
282
@@ -469,7 +470,7 @@ func (n *IpfsNode) HandlePeerFound(p pstore.PeerInfo) {
469
470
470
471
// startOnlineServicesWithHost is the set of services which need to be
471
472
// initialized with the host and _before_ we start listening.
472
- func (n * IpfsNode ) startOnlineServicesWithHost (ctx context.Context , host p2phost.Host , enablePubsub bool , enableIpnsps bool ) error {
473
+ func (n * IpfsNode ) startOnlineServicesWithHost (ctx context.Context , host p2phost.Host , routingOption RoutingOption , enablePubsub bool , enableIpnsps bool ) error {
473
474
if enablePubsub || enableIpnsps {
474
475
cfg , err := n .Repo .Config ()
475
476
if err != nil {
@@ -506,6 +507,18 @@ func (n *IpfsNode) startOnlineServicesWithHost(ctx context.Context, host p2phost
506
507
n .PubSub = service
507
508
}
508
509
510
+ // sadly, this code is necessary just for tests:
511
+ // it is necessary for mock network constructions that ignore the libp2p options
512
+ // that actually construct the routing!
513
+ if n .Routing == nil {
514
+ r , err := routingOption (ctx , host , n .Repo .Datastore (), n .RecordValidator )
515
+ if err != nil {
516
+ return err
517
+ }
518
+ n .Routing = r
519
+ n .PeerHost = rhost .Wrap (host , n .Routing )
520
+ }
521
+
509
522
// TODO: I'm not a fan of type assertions like this but the
510
523
// `RoutingOption` system doesn't currently provide access to the
511
524
// IpfsNode.
0 commit comments