bip_peer 0.5.0

Communication with bittorrent peers via peer wire protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use manager::peer_info::PeerInfo;

error_chain! {
    types {
        PeerManagerError, PeerManagerErrorKind, PeerManagerResultExt, PeerManagerResult;
    }

    errors {
        PeerNotFound {
            info: PeerInfo
         } {
            description("Peer Was Not Found")
            display("Peer Was Not Found With PeerInfo {:?}", info)
        }
        
    }
}