mirror of
https://github.com/fluencelabs/go-libp2p-kad-dht
synced 2025-04-25 06:42:13 +00:00
11 lines
292 B
Go
11 lines
292 B
Go
|
package dht
|
||
|
|
||
|
// TODO. SEE https://github.com/jbenet/node-ipfs/blob/master/submodules/ipfs-dht/index.js
|
||
|
|
||
|
|
||
|
// IpfsDHT is an implementation of Kademlia with Coral and S/Kademlia modifications.
|
||
|
// It is used to implement the base IpfsRouting module.
|
||
|
type IpfsDHT struct {
|
||
|
routes RoutingTable
|
||
|
}
|