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
#[cfg(test)]
mod tcp_type_test;
use std::fmt;
#[derive(PartialEq, Debug, Copy, Clone)]
pub enum TcpType {
Unspecified,
Active,
Passive,
SimultaneousOpen,
}
impl From<&str> for TcpType {
fn from(raw: &str) -> Self {
match raw {
"active" => TcpType::Active,
"passive" => TcpType::Passive,
"so" => TcpType::SimultaneousOpen,
_ => TcpType::Unspecified,
}
}
}
impl fmt::Display for TcpType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let s = match *self {
TcpType::Active => "active",
TcpType::Passive => "passive",
TcpType::SimultaneousOpen => "so",
TcpType::Unspecified => "unspecified",
};
write!(f, "{}", s)
}
}
impl Default for TcpType {
fn default() -> Self {
TcpType::Unspecified
}
}