| 1688 | } |
| 1689 | |
| 1690 | void * |
| 1691 | in_domifattach(struct ifnet *ifp) |
| 1692 | { |
| 1693 | struct in_ifinfo *ii; |
| 1694 | |
| 1695 | ii = malloc(sizeof(struct in_ifinfo), M_IFADDR, M_WAITOK|M_ZERO); |
| 1696 | |
| 1697 | ii->ii_llt = in_lltattach(ifp); |
| 1698 | ii->ii_igmp = igmp_domifattach(ifp); |
| 1699 | |
| 1700 | return (ii); |
| 1701 | } |
| 1702 | |
| 1703 | void |
| 1704 | in_domifdetach(struct ifnet *ifp, void *aux) |
nothing calls this directly
no test coverage detected