mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-29 17:51:35 +00:00
feat(swarm): remove deprecated IntoConnectionHandler
This removes the deprecated `IntoConnectionHandler` trait and all its implementations. Consequently, `NetworkBehaviour::new_handler` and `NetworkBehaviour::addresses_of_peer` are now gone and the two `handle_` functions are now required to implement. Related: #3647. Pull-Request: #3884.
This commit is contained in:
@ -167,9 +167,6 @@ impl Config {
|
||||
}
|
||||
|
||||
/// Configures the size of the LRU cache, caching addresses of discovered peers.
|
||||
///
|
||||
/// The [`Swarm`](libp2p_swarm::Swarm) may extend the set of addresses of an outgoing connection attempt via
|
||||
/// [`Behaviour::addresses_of_peer`].
|
||||
pub fn with_cache_size(mut self, cache_size: usize) -> Self {
|
||||
self.cache_size = cache_size;
|
||||
self
|
||||
|
Reference in New Issue
Block a user