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