Function mcastIpToMac [src]
Translates an IP multicast address to a hardware (MAC) multicast address.
This function may be unsupported in some MNP implementations.
Prototype
pub fn mcastIpToMac(self: *const ManagedNetwork, ipv6flag: bool, ipaddress: *const anyopaque, mac_address: *MacAddress) Status
Parameters
self: *const ManagedNetwork
ipv6flag: bool
ipaddress: *const anyopaque
mac_address: *MacAddress
Source
pub fn mcastIpToMac(self: *const ManagedNetwork, ipv6flag: bool, ipaddress: *const anyopaque, mac_address: *MacAddress) Status {
return self._mcast_ip_to_mac(self, ipv6flag, ipaddress, mac_address);
}