浏览代码

Remove `Ipv6NotSupported` from `enum MulticastError`

No part of the code uses this anymore.
Lucas Villa Real 11 月之前
父节点
当前提交
307952c13c
共有 1 个文件被更改,包括 0 次插入3 次删除
  1. 0 3
      src/iface/interface/igmp.rs

+ 0 - 3
src/iface/interface/igmp.rs

@@ -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,
 }
@@ -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"),
         }
     }