mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2026-07-26 14:11:03 -04:00
070f38120b
- Address https://github.com/bitmagnet-io/bitmagnet/issues/11 with BEP5 & BEP51 implementations - Reimplement DHT crawler around new routing table - Fix https://github.com/bitmagnet-io/bitmagnet/issues/45 - Fix https://github.com/bitmagnet-io/bitmagnet/issues/42 - Fix https://github.com/bitmagnet-io/bitmagnet/issues/39 - Fix https://github.com/bitmagnet-io/bitmagnet/issues/37 - Make bootstrap nodes configurable: https://github.com/bitmagnet-io/bitmagnet/issues/27 - Add profiling tools to Docker image
6 lines
302 B
Go
6 lines
302 B
Go
// The ktable package provides a Kademlia routing table implementation (https://en.wikipedia.org/wiki/Kademlia).
|
|
// 2 tables are maintained, one containing nodes and another containing info hashes.
|
|
// The btree package contains the binary tree implementation used by the routing table.
|
|
|
|
package ktable
|