Replaced DHT with custom one! Lets see if it works

This commit is contained in:
Igor Katson 2021-07-12 19:55:23 +01:00
parent 5c41796485
commit 2eabebb5c3
14 changed files with 192 additions and 350 deletions

View file

@ -3,10 +3,9 @@ use std::{
time::{Duration, Instant},
};
use librqbit_core::id20::Id20;
use log::debug;
use crate::id20::Id20;
#[derive(Debug)]
enum BucketTreeNode {
Leaf(Vec<RoutingTableNode>),
@ -426,9 +425,10 @@ impl RoutingTable {
mod tests {
use std::net::SocketAddrV4;
use librqbit_core::id20::Id20;
use rand::Rng;
use crate::{id20::Id20, routing_table::compute_split_start_end};
use crate::routing_table::compute_split_start_end;
use super::RoutingTable;