CVSROOT: /cvs Module name: src Changes by: d...@cvs.openbsd.org 2018/03/12 19:31:48
Modified files: sys/net : if_ethersubr.c Log message: on input, check the unicast address before the multicast handling. if the mac address is not for the interface, it must be multicast or broadcast. this is instead of if the packet is not multicast/broadcast, it must be for the interface. this allows ethernet interfaces to have multicast mac addresses without having to special case it themselves. eg, carp load balancing should become easier with this. ok mpi@