mirror of
https://github.com/fluencelabs/go-libp2p-kad-dht
synced 2025-04-25 06:42:13 +00:00
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
|
package dht
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
peer "github.com/jbenet/go-ipfs/peer"
|
||
|
u "github.com/jbenet/go-ipfs/util"
|
||
|
)
|
||
|
|
||
|
|
||
|
// This file implements the Routing interface for the IpfsDHT struct.
|
||
|
|
||
|
// Basic Put/Get
|
||
|
|
||
|
// PutValue adds value corresponding to given Key.
|
||
|
func (s *IpfsDHT) PutValue(key u.Key, value []byte) (error) {
|
||
|
return u.ErrNotImplemented
|
||
|
}
|
||
|
|
||
|
// GetValue searches for the value corresponding to given Key.
|
||
|
func (s *IpfsDHT) GetValue(key u.Key, timeout time.Duration) ([]byte, error) {
|
||
|
return nil, u.ErrNotImplemented
|
||
|
}
|
||
|
|
||
|
|
||
|
// Value provider layer of indirection.
|
||
|
// This is what DSHTs (Coral and MainlineDHT) do to store large values in a DHT.
|
||
|
|
||
|
// Announce that this node can provide value for given key
|
||
|
func (s *IpfsDHT) Provide(key u.Key) (error) {
|
||
|
return u.ErrNotImplemented
|
||
|
}
|
||
|
|
||
|
// FindProviders searches for peers who can provide the value for given key.
|
||
|
func (s *IpfsDHT) FindProviders(key u.Key, timeout time.Duration) (*peer.Peer, error) {
|
||
|
return nil, u.ErrNotImplemented
|
||
|
}
|
||
|
|
||
|
|
||
|
// Find specific Peer
|
||
|
|
||
|
// FindPeer searches for a peer with given ID.
|
||
|
func (s *IpfsDHT) FindPeer(id peer.ID, timeout time.Duration) (*peer.Peer, error) {
|
||
|
return nil, u.ErrNotImplemented
|
||
|
}
|