38 lines
1.1 KiB
Rust
38 lines
1.1 KiB
Rust
mod bprotocol;
|
|
mod dht;
|
|
mod peer_store;
|
|
mod persistence;
|
|
mod routing_table;
|
|
mod utils;
|
|
|
|
use std::sync::Arc;
|
|
use std::time::Duration;
|
|
|
|
pub use crate::dht::DhtStats;
|
|
pub use crate::dht::{DhtConfig, DhtState, RequestPeersStream};
|
|
pub use librqbit_core::hash_id::Id20;
|
|
pub use persistence::{PersistentDht, PersistentDhtConfig};
|
|
|
|
pub type Dht = Arc<DhtState>;
|
|
|
|
// How long do we wait for a response from a DHT node.
|
|
pub(crate) const RESPONSE_TIMEOUT: Duration = Duration::from_secs(60);
|
|
// TODO: Not sure if we should re-query tbh.
|
|
pub(crate) const REQUERY_INTERVAL: Duration = Duration::from_secs(60);
|
|
// After how long we consider a routing table node questionable.
|
|
pub(crate) const INACTIVITY_TIMEOUT: Duration = Duration::from_secs(15 * 60);
|
|
|
|
pub struct DhtBuilder {}
|
|
|
|
impl DhtBuilder {
|
|
#[allow(clippy::new_ret_no_self)]
|
|
pub async fn new() -> anyhow::Result<Dht> {
|
|
DhtState::new().await
|
|
}
|
|
|
|
pub async fn with_config(config: DhtConfig) -> anyhow::Result<Dht> {
|
|
DhtState::with_config(config).await
|
|
}
|
|
}
|
|
|
|
pub static DHT_BOOTSTRAP: &[&str] = &["dht.transmissionbt.com:6881", "dht.libtorrent.org:25401"];
|