mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 18:37:45 +08:00
52 lines
1.4 KiB
Go
52 lines
1.4 KiB
Go
package network
|
|
|
|
import (
|
|
key "github.com/ipfs/go-ipfs/blocks/key"
|
|
bsmsg "github.com/ipfs/go-ipfs/exchange/bitswap/message"
|
|
peer "gx/ipfs/QmUBogf4nUefBjmYjn6jfsfPJRkmDGSeMhNj4usRKq69f4/go-libp2p/p2p/peer"
|
|
protocol "gx/ipfs/QmUBogf4nUefBjmYjn6jfsfPJRkmDGSeMhNj4usRKq69f4/go-libp2p/p2p/protocol"
|
|
context "gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
|
|
)
|
|
|
|
var ProtocolBitswap protocol.ID = "/ipfs/bitswap"
|
|
|
|
// BitSwapNetwork provides network connectivity for BitSwap sessions
|
|
type BitSwapNetwork interface {
|
|
|
|
// SendMessage sends a BitSwap message to a peer.
|
|
SendMessage(
|
|
context.Context,
|
|
peer.ID,
|
|
bsmsg.BitSwapMessage) error
|
|
|
|
// SetDelegate registers the Reciver to handle messages received from the
|
|
// network.
|
|
SetDelegate(Receiver)
|
|
|
|
ConnectTo(context.Context, peer.ID) error
|
|
|
|
Routing
|
|
}
|
|
|
|
// Implement Receiver to receive messages from the BitSwapNetwork
|
|
type Receiver interface {
|
|
ReceiveMessage(
|
|
ctx context.Context,
|
|
sender peer.ID,
|
|
incoming bsmsg.BitSwapMessage)
|
|
|
|
ReceiveError(error)
|
|
|
|
// Connected/Disconnected warns bitswap about peer connections
|
|
PeerConnected(peer.ID)
|
|
PeerDisconnected(peer.ID)
|
|
}
|
|
|
|
type Routing interface {
|
|
// FindProvidersAsync returns a channel of providers for the given key
|
|
FindProvidersAsync(context.Context, key.Key, int) <-chan peer.ID
|
|
|
|
// Provide provides the key to the network
|
|
Provide(context.Context, key.Key) error
|
|
}
|