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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
use std::error;
use std::fmt;
use std::io;
#[derive(Debug)]
pub enum SctpError {
Io(io::Error),
#[allow(dead_code)]
ReadUnderrun,
InvalidPacket,
BadChecksum,
BadState,
ExpectedBeginningFragment,
UnexpectedBeginningFragment,
UnexpectedSSN,
SendQueueFull,
CommandQueueFull,
Closed,
Timeout,
}
#[must_use]
pub type SctpResult<T> = ::std::result::Result<T, SctpError>;
impl fmt::Display for SctpError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
SctpError::Io(ref e) => write!(f, "IO error: {}", e),
SctpError::ReadUnderrun => write!(f, "read underrun"),
SctpError::InvalidPacket => write!(f, "invalid packet"),
SctpError::BadChecksum => write!(f, "bad checksum"),
SctpError::BadState => write!(f, "bad state"),
SctpError::ExpectedBeginningFragment => write!(f, "expected beginning fragment"),
SctpError::UnexpectedBeginningFragment => write!(f, "unexpected beginning fragment"),
SctpError::UnexpectedSSN => write!(f, "unexpected ssn"),
SctpError::SendQueueFull => write!(f, "send queue full"),
SctpError::CommandQueueFull => write!(f, "command queue full"),
SctpError::Closed => write!(f, "resource is closed"),
SctpError::Timeout => write!(f, "timeout"),
}
}
}
impl error::Error for SctpError {
fn description(&self) -> &str {
match *self {
SctpError::Io(ref e) => error::Error::description(e),
SctpError::ReadUnderrun => "A read underrun occured",
SctpError::InvalidPacket => "Invalid packet",
SctpError::BadChecksum => "Bad checksum",
SctpError::BadState => "Bad state",
SctpError::ExpectedBeginningFragment => {
"Expected beginning fragment; received middle or end."
}
SctpError::UnexpectedBeginningFragment => "Unexpected beginning fragment",
SctpError::UnexpectedSSN => "Unexpected SSN",
SctpError::SendQueueFull => "Send queue full",
SctpError::CommandQueueFull => "Command queue full",
SctpError::Closed => "Resource is closed",
SctpError::Timeout => "Timeout",
}
}
fn cause(&self) -> Option<&error::Error> {
match *self {
SctpError::Io(ref err) => Some(err),
_ => None,
}
}
}
impl From<io::Error> for SctpError {
fn from(err: io::Error) -> SctpError {
SctpError::Io(err)
}
}