pub struct BootstrapManager { /* private fields */ }Expand description
Simplified bootstrap manager wrapping ant-quic’s cache
Provides Sybil protection via rate limiting and IP diversity enforcement while delegating core caching to ant-quic’s proven implementation.
Implementations§
Source§impl BootstrapManager
impl BootstrapManager
Sourcepub async fn with_config(config: BootstrapConfig) -> Result<Self>
pub async fn with_config(config: BootstrapConfig) -> Result<Self>
Create a new bootstrap manager with custom configuration
Sourcepub async fn with_full_config(
cache_config: CacheConfig,
rate_limit_config: JoinRateLimiterConfig,
diversity_config: IPDiversityConfig,
) -> Result<Self>
pub async fn with_full_config( cache_config: CacheConfig, rate_limit_config: JoinRateLimiterConfig, diversity_config: IPDiversityConfig, ) -> Result<Self>
Create a new bootstrap manager with full custom configuration
This is a compatibility method for migrating from the old BootstrapManager.
It accepts the old CacheConfig type and maps it to the new configuration.
Sourcepub fn start_maintenance(&mut self) -> Result<()>
pub fn start_maintenance(&mut self) -> Result<()>
Start background maintenance tasks (delegated to ant-quic)
Sourcepub async fn add_peer(
&self,
peer_id: PeerId,
addresses: Vec<SocketAddr>,
) -> Result<()>
pub async fn add_peer( &self, peer_id: PeerId, addresses: Vec<SocketAddr>, ) -> Result<()>
Add a peer to the cache with Sybil protection
Enforces:
- Rate limiting (per-subnet temporal limits)
- IP diversity (geographic/ASN limits)
Sourcepub async fn add_peer_trusted(
&self,
peer_id: PeerId,
addresses: Vec<SocketAddr>,
)
pub async fn add_peer_trusted( &self, peer_id: PeerId, addresses: Vec<SocketAddr>, )
Add a trusted peer bypassing Sybil protection
Use only for well-known bootstrap nodes or admin-approved peers.
Sourcepub async fn record_success(&self, peer_id: &PeerId, rtt_ms: u32)
pub async fn record_success(&self, peer_id: &PeerId, rtt_ms: u32)
Record a successful connection
Sourcepub async fn record_failure(&self, peer_id: &PeerId)
pub async fn record_failure(&self, peer_id: &PeerId)
Record a failed connection
Sourcepub async fn select_peers(&self, count: usize) -> Vec<CachedPeer>
pub async fn select_peers(&self, count: usize) -> Vec<CachedPeer>
Select peers for bootstrap using epsilon-greedy strategy
Sourcepub async fn select_relay_peers(&self, count: usize) -> Vec<CachedPeer>
pub async fn select_relay_peers(&self, count: usize) -> Vec<CachedPeer>
Select peers that support relay functionality
Sourcepub async fn select_coordinators(&self, count: usize) -> Vec<CachedPeer>
pub async fn select_coordinators(&self, count: usize) -> Vec<CachedPeer>
Select peers that support NAT coordination
Sourcepub async fn stats(&self) -> BootstrapStats
pub async fn stats(&self) -> BootstrapStats
Get cache statistics
Sourcepub async fn peer_count(&self) -> usize
pub async fn peer_count(&self) -> usize
Get the number of cached peers
Sourcepub async fn update_capabilities(
&self,
peer_id: &PeerId,
capabilities: PeerCapabilities,
)
pub async fn update_capabilities( &self, peer_id: &PeerId, capabilities: PeerCapabilities, )
Update peer capabilities
Sourcepub async fn get_peer(&self, peer_id: &PeerId) -> Option<CachedPeer>
pub async fn get_peer(&self, peer_id: &PeerId) -> Option<CachedPeer>
Get a specific peer from the cache
Sourcepub async fn add_contact(&self, contact: ContactEntry) -> Result<()>
pub async fn add_contact(&self, contact: ContactEntry) -> Result<()>
Add a discovered peer to the cache (compatibility method)
This accepts the old ContactEntry type and converts it to the new API.
Sourcepub async fn add_contact_trusted(&self, contact: ContactEntry)
pub async fn add_contact_trusted(&self, contact: ContactEntry)
Add a contact bypassing rate limiting (compatibility method)
Sourcepub async fn update_contact_metrics(
&self,
peer_id: &PeerId,
metrics: QualityMetrics,
) -> Result<()>
pub async fn update_contact_metrics( &self, peer_id: &PeerId, metrics: QualityMetrics, ) -> Result<()>
Update contact performance metrics (compatibility method)
Maps the old QualityMetrics to record_success/record_failure calls.
Sourcepub async fn get_stats(&self) -> Result<CacheStats>
pub async fn get_stats(&self) -> Result<CacheStats>
Get bootstrap cache statistics (compatibility method)
Returns stats in the old CacheStats format.
Sourcepub async fn start_background_tasks(&mut self) -> Result<()>
pub async fn start_background_tasks(&mut self) -> Result<()>
Start background maintenance tasks (compatibility method)
Alias for start_maintenance().
Sourcepub async fn get_bootstrap_peers(
&self,
count: usize,
) -> Result<Vec<ContactEntry>>
pub async fn get_bootstrap_peers( &self, count: usize, ) -> Result<Vec<ContactEntry>>
Get bootstrap peers for initial connection (compatibility method)
Converts ant-quic CachedPeer results to ContactEntry format.
Sourcepub async fn get_quic_bootstrap_peers(
&self,
count: usize,
) -> Result<Vec<ContactEntry>>
pub async fn get_quic_bootstrap_peers( &self, count: usize, ) -> Result<Vec<ContactEntry>>
Get QUIC-capable bootstrap peers (compatibility method)
Source§impl BootstrapManager
impl BootstrapManager
Sourcepub fn diversity_config(&self) -> &IPDiversityConfig
pub fn diversity_config(&self) -> &IPDiversityConfig
Get the diversity config
Auto Trait Implementations§
impl !Freeze for BootstrapManager
impl !RefUnwindSafe for BootstrapManager
impl Send for BootstrapManager
impl Sync for BootstrapManager
impl Unpin for BootstrapManager
impl UnsafeUnpin for BootstrapManager
impl !UnwindSafe for BootstrapManager
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.