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 !UnwindSafe for BootstrapManager
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self to use its Binary implementation when Debug-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self to use its Display implementation when
Debug-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self to use its Octal implementation when Debug-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.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> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self, then passes self.as_ref() into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self, then passes self.as_mut() into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self, then passes self.deref() into the pipe function.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.Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B> of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B> of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R> view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R> view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow() only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut() only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref() only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut() only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref() only in debug builds, and is erased in release
builds.