* Just like ifpromisc(), but for all-multicast-reception mode. */
| 3301 | * Just like ifpromisc(), but for all-multicast-reception mode. |
| 3302 | */ |
| 3303 | int |
| 3304 | if_allmulti(struct ifnet *ifp, int onswitch) |
| 3305 | { |
| 3306 | |
| 3307 | return (if_setflag(ifp, IFF_ALLMULTI, 0, &ifp->if_amcount, onswitch)); |
| 3308 | } |
| 3309 | |
| 3310 | struct ifmultiaddr * |
| 3311 | if_findmulti(struct ifnet *ifp, const struct sockaddr *sa) |
no test coverage detected