Skip to content

Commit 5a73303

Browse files
committed
bitswap/network: improve router (allow disabling http or bitswap)
1 parent af2b184 commit 5a73303

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

bitswap/network/router.go

+12
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,18 @@ type router struct {
1919

2020
// New returns a BitSwapNetwork supported by underlying IPFS host.
2121
func New(pstore peerstore.Peerstore, bitswap BitSwapNetwork, http BitSwapNetwork) BitSwapNetwork {
22+
if bitswap == nil && http == nil {
23+
panic("bad exchange network router initialization: need bitswap or http")
24+
}
25+
26+
if http == nil {
27+
return bitswap
28+
}
29+
30+
if bitswap == nil {
31+
return http
32+
}
33+
2234
return &router{
2335
Bitswap: bitswap,
2436
HTTP: http,

0 commit comments

Comments
 (0)