use netlink_packet_core::DecodeError;
const ETH_P_8021Q: u16 = 0x8100;
const ETH_P_8021AD: u16 = 0x88A8;
#[derive(Debug, PartialEq, Eq, Clone, Copy, Default)]
#[non_exhaustive]
#[repr(u16)]
pub enum VlanProtocol {
#[default]
Ieee8021Q = ETH_P_8021Q,
Ieee8021Ad = ETH_P_8021AD,
}
impl From<u16> for VlanProtocol {
fn from(d: u16) -> Self {
match d {
ETH_P_8021Q => Self::Ieee8021Q,
ETH_P_8021AD => Self::Ieee8021Ad,
_ => {
log::warn!(
"BUG: Got unknown VLAN protocol {}, treating as {}",
d,
Self::Ieee8021Q
);
Self::Ieee8021Q
}
}
}
}
impl From<VlanProtocol> for u16 {
fn from(v: VlanProtocol) -> u16 {
match v {
VlanProtocol::Ieee8021Q => ETH_P_8021Q,
VlanProtocol::Ieee8021Ad => ETH_P_8021AD,
}
}
}
impl std::fmt::Display for VlanProtocol {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"{}",
match self {
VlanProtocol::Ieee8021Q => "802.1Q",
VlanProtocol::Ieee8021Ad => "802.1ad",
}
)
}
}
impl std::str::FromStr for VlanProtocol {
type Err = DecodeError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
if s.eq_ignore_ascii_case("802.1q") {
Ok(Self::Ieee8021Q)
} else if s.eq_ignore_ascii_case("802.1ad") {
Ok(Self::Ieee8021Ad)
} else {
Err(DecodeError::from(format!("unknown VLAN protocol: {s}")))
}
}
}