| 144 | } |
| 145 | |
| 146 | void |
| 147 | if_dead(struct ifnet *ifp) |
| 148 | { |
| 149 | |
| 150 | ifp->if_output = ifdead_output; |
| 151 | ifp->if_input = ifdead_input; |
| 152 | ifp->if_start = ifdead_start; |
| 153 | ifp->if_ioctl = ifdead_ioctl; |
| 154 | ifp->if_resolvemulti = ifdead_resolvemulti; |
| 155 | ifp->if_qflush = ifdead_qflush; |
| 156 | ifp->if_transmit = ifdead_transmit; |
| 157 | ifp->if_get_counter = ifdead_get_counter; |
| 158 | ifp->if_snd_tag_alloc = ifdead_snd_tag_alloc; |
| 159 | ifp->if_snd_tag_modify = ifdead_snd_tag_modify; |
| 160 | ifp->if_snd_tag_query = ifdead_snd_tag_query; |
| 161 | ifp->if_snd_tag_free = ifdead_snd_tag_free; |
| 162 | ifp->if_ratelimit_query = ifdead_ratelimit_query; |
| 163 | } |
no outgoing calls
no test coverage detected