MCPcopy Create free account
hub / github.com/F-Stack/f-stack / if_dead

Function if_dead

freebsd/net/if_dead.c:146–163  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

144}
145
146void
147if_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}

Callers 1

if_detach_internalFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected