Skip to content

Commit

Permalink
Remove Ipv6NotSupported from enum MulticastError
Browse files Browse the repository at this point in the history
No part of the code uses this anymore.
  • Loading branch information
lucasvr committed Apr 19, 2024
1 parent d52a196 commit 307952c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/iface/interface/igmp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ pub enum MulticastError {
Exhausted,
/// The table of joined multicast groups is already full.
GroupTableFull,
/// IPv6 multicast is not yet supported.
Ipv6NotSupported,
/// Cannot join/leave the given multicast group.
Unaddressable,
}
Expand All @@ -19,7 +17,6 @@ impl core::fmt::Display for MulticastError {
match self {
MulticastError::Exhausted => write!(f, "Exhausted"),
MulticastError::GroupTableFull => write!(f, "GroupTableFull"),
MulticastError::Ipv6NotSupported => write!(f, "Ipv6NotSupported"),
MulticastError::Unaddressable => write!(f, "Unaddressable"),
}
}
Expand Down

0 comments on commit 307952c

Please sign in to comment.