| ... | @@ -31,8 +31,7 @@ pub const ManagedNetworkProtocol = extern struct { | ... | @@ -31,8 +31,7 @@ pub const ManagedNetworkProtocol = extern struct { |
| 31 | /// Translates an IP multicast address to a hardware (MAC) multicast address. | 31 | /// Translates an IP multicast address to a hardware (MAC) multicast address. |
| 32 | /// This function may be unsupported in some MNP implementations. | 32 | /// This function may be unsupported in some MNP implementations. |
| 33 | pub fn mcastIpToMac(self: *const ManagedNetworkProtocol, ipv6flag: bool, ipaddress: *const anyopaque, mac_address: *MacAddress) Status { | 33 | pub fn mcastIpToMac(self: *const ManagedNetworkProtocol, ipv6flag: bool, ipaddress: *const anyopaque, mac_address: *MacAddress) Status { |
| 34 | _ = mac_address; | 34 | return self._mcast_ip_to_mac(self, ipv6flag, ipaddress, mac_address); |
| 35 | return self._mcast_ip_to_mac(self, ipv6flag, ipaddress); | | |
| 36 | } | 35 | } |
| 37 | | 36 | |
| 38 | /// Enables and disables receive filters for multicast address. | 37 | /// Enables and disables receive filters for multicast address. |