1. NAME

is_multicast_ether_addr - Determine if the Ethernet address is a multicast.

2. SYNOPSIS

bool is_multicast_ether_addr(const u8 *  addr );

3. ARGUMENTS

addr
    Pointer to a six-byte array containing the Ethernet address

4. DESCRIPTION

Return true if the address is a multicast address. By definition the broadcast address is also a multicast address.

5. COPYRIGHT