scatter_net/legacy/
error_code.rs

1#[repr(u8)]
2#[derive(Clone, Copy, Debug, Default, Hash, PartialEq, Eq, PartialOrd, Ord)]
3pub enum ErrorCode {
4    Success = 0,
5    Failure = 1,
6
7    #[default]
8    Unknown = 2,
9
10    // Peer Errors
11    PeerDropped = 16,
12    PingPongFailed = 17,
13}