1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
use crate::{protocols::wire::handshake::v1::ProtocolId, transport::ConnectionMetadata};
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum PeerError {
NotFound,
}
#[derive(Clone, Debug)]
pub struct PeerInfo {
pub status: PeerState,
pub active_connection: ConnectionMetadata,
}
impl PeerInfo {
pub fn new(connection_metadata: ConnectionMetadata) -> Self {
PeerInfo {
status: PeerState::Connected,
active_connection: connection_metadata,
}
}
pub fn is_connected(&self) -> bool {
self.status == PeerState::Connected
}
pub fn supports_protocol(&self, protocol: ProtocolId) -> bool {
self.active_connection
.application_protocols
.contains(protocol)
}
}
#[derive(Clone, Copy, Debug, Ord, PartialOrd, Eq, PartialEq)]
pub enum PeerState {
Connected,
Disconnecting,
Disconnected,
}