mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 18:37:45 +08:00
* go-datastore and friends: GetSize * badger: new release, fewer allocations * go-mplex: send fewer packets * go-bitswap: pack multiple blocks in a single message, fewer allocations * go-buffer-pool: replace the buffer pool from go-msgio * yamux: fixed data race and uses go-buffer-pool for stream read-buffers to reduce memory and allocations. * go-libp2p-secio: get rid of a hot-spot allocation * go-libp2p-peerstore: reduced allocations (at the cost of some memory) More? License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
27 lines
961 B
Go
27 lines
961 B
Go
package iface
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/ipfs/go-ipfs/core/coreapi/interface/options"
|
|
|
|
pstore "gx/ipfs/QmXEyLwySuDMXejWBu8XwdkX2WuGKk8x9jFwz8js7j72UX/go-libp2p-peerstore"
|
|
peer "gx/ipfs/QmbNepETomvmXfz1X5pHNFD2QuPqnqi47dTd94QJWSorQ3/go-libp2p-peer"
|
|
)
|
|
|
|
// DhtAPI specifies the interface to the DHT
|
|
// Note: This API will likely get deprecated in near future, see
|
|
// https://github.com/ipfs/interface-ipfs-core/issues/249 for more context.
|
|
type DhtAPI interface {
|
|
// FindPeer queries the DHT for all of the multiaddresses associated with a
|
|
// Peer ID
|
|
FindPeer(context.Context, peer.ID) (pstore.PeerInfo, error)
|
|
|
|
// FindProviders finds peers in the DHT who can provide a specific value
|
|
// given a key.
|
|
FindProviders(context.Context, Path, ...options.DhtFindProvidersOption) (<-chan pstore.PeerInfo, error)
|
|
|
|
// Provide announces to the network that you are providing given values
|
|
Provide(context.Context, Path, ...options.DhtProvideOption) error
|
|
}
|