mirror of
https://github.com/fluencelabs/rust-libp2p
synced 2025-06-15 19:11:23 +00:00
feat(swarm): remove unused DialError::ConnectionIo
variant (#3374)
This variant is never constructed.
This commit is contained in:
@ -246,9 +246,6 @@ impl<TBvEv, THandleErr> super::Recorder<libp2p_swarm::SwarmEvent<TBvEv, THandleE
|
|||||||
libp2p_swarm::DialError::WrongPeerId { .. } => {
|
libp2p_swarm::DialError::WrongPeerId { .. } => {
|
||||||
record(OutgoingConnectionErrorError::WrongPeerId)
|
record(OutgoingConnectionErrorError::WrongPeerId)
|
||||||
}
|
}
|
||||||
libp2p_swarm::DialError::ConnectionIo(_) => {
|
|
||||||
record(OutgoingConnectionErrorError::ConnectionIo)
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
libp2p_swarm::SwarmEvent::BannedPeer { endpoint, .. } => {
|
libp2p_swarm::SwarmEvent::BannedPeer { endpoint, .. } => {
|
||||||
@ -347,7 +344,6 @@ enum OutgoingConnectionErrorError {
|
|||||||
Aborted,
|
Aborted,
|
||||||
InvalidPeerId,
|
InvalidPeerId,
|
||||||
WrongPeerId,
|
WrongPeerId,
|
||||||
ConnectionIo,
|
|
||||||
TransportMultiaddrNotSupported,
|
TransportMultiaddrNotSupported,
|
||||||
TransportOther,
|
TransportOther,
|
||||||
}
|
}
|
||||||
|
@ -1936,7 +1936,6 @@ where
|
|||||||
| DialError::InvalidPeerId { .. }
|
| DialError::InvalidPeerId { .. }
|
||||||
| DialError::WrongPeerId { .. }
|
| DialError::WrongPeerId { .. }
|
||||||
| DialError::Aborted
|
| DialError::Aborted
|
||||||
| DialError::ConnectionIo(_)
|
|
||||||
| DialError::Transport(_)
|
| DialError::Transport(_)
|
||||||
| DialError::NoAddresses => {
|
| DialError::NoAddresses => {
|
||||||
if let DialError::Transport(addresses) = error {
|
if let DialError::Transport(addresses) = error {
|
||||||
|
@ -29,6 +29,10 @@
|
|||||||
This was never constructed.
|
This was never constructed.
|
||||||
See [PR 3373].
|
See [PR 3373].
|
||||||
|
|
||||||
|
- Remove `DialError::ConnectionIo` variant.
|
||||||
|
This was never constructed.
|
||||||
|
See [PR 3374].
|
||||||
|
|
||||||
[PR 3364]: https://github.com/libp2p/rust-libp2p/pull/3364
|
[PR 3364]: https://github.com/libp2p/rust-libp2p/pull/3364
|
||||||
[PR 3170]: https://github.com/libp2p/rust-libp2p/pull/3170
|
[PR 3170]: https://github.com/libp2p/rust-libp2p/pull/3170
|
||||||
[PR 3134]: https://github.com/libp2p/rust-libp2p/pull/3134
|
[PR 3134]: https://github.com/libp2p/rust-libp2p/pull/3134
|
||||||
@ -39,6 +43,7 @@
|
|||||||
[PR 3188]: https://github.com/libp2p/rust-libp2p/pull/3188
|
[PR 3188]: https://github.com/libp2p/rust-libp2p/pull/3188
|
||||||
[PR 3377]: https://github.com/libp2p/rust-libp2p/pull/3377
|
[PR 3377]: https://github.com/libp2p/rust-libp2p/pull/3377
|
||||||
[PR 3373]: https://github.com/libp2p/rust-libp2p/pull/3373
|
[PR 3373]: https://github.com/libp2p/rust-libp2p/pull/3373
|
||||||
|
[PR 3374]: https://github.com/libp2p/rust-libp2p/pull/3374
|
||||||
|
|
||||||
# 0.41.1
|
# 0.41.1
|
||||||
|
|
||||||
|
@ -1597,8 +1597,6 @@ pub enum DialError {
|
|||||||
obtained: PeerId,
|
obtained: PeerId,
|
||||||
endpoint: ConnectedPoint,
|
endpoint: ConnectedPoint,
|
||||||
},
|
},
|
||||||
/// An I/O error occurred on the connection.
|
|
||||||
ConnectionIo(io::Error),
|
|
||||||
/// An error occurred while negotiating the transport protocol(s) on a connection.
|
/// An error occurred while negotiating the transport protocol(s) on a connection.
|
||||||
Transport(Vec<(Multiaddr, TransportError<io::Error>)>),
|
Transport(Vec<(Multiaddr, TransportError<io::Error>)>),
|
||||||
}
|
}
|
||||||
@ -1641,10 +1639,6 @@ impl fmt::Display for DialError {
|
|||||||
f,
|
f,
|
||||||
"Dial error: Unexpected peer ID {obtained} at {endpoint:?}."
|
"Dial error: Unexpected peer ID {obtained} at {endpoint:?}."
|
||||||
),
|
),
|
||||||
DialError::ConnectionIo(e) => write!(
|
|
||||||
f,
|
|
||||||
"Dial error: An I/O error occurred on the connection: {e:?}."
|
|
||||||
),
|
|
||||||
DialError::Transport(errors) => {
|
DialError::Transport(errors) => {
|
||||||
write!(f, "Failed to negotiate transport protocol(s): [")?;
|
write!(f, "Failed to negotiate transport protocol(s): [")?;
|
||||||
|
|
||||||
@ -1682,7 +1676,6 @@ impl error::Error for DialError {
|
|||||||
DialError::Aborted => None,
|
DialError::Aborted => None,
|
||||||
DialError::InvalidPeerId { .. } => None,
|
DialError::InvalidPeerId { .. } => None,
|
||||||
DialError::WrongPeerId { .. } => None,
|
DialError::WrongPeerId { .. } => None,
|
||||||
DialError::ConnectionIo(_) => None,
|
|
||||||
DialError::Transport(_) => None,
|
DialError::Transport(_) => None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user