* Mark an interface up and notify protocols of * the transition. */
| 2316 | * the transition. |
| 2317 | */ |
| 2318 | void |
| 2319 | if_up(struct ifnet *ifp) |
| 2320 | { |
| 2321 | |
| 2322 | if_route(ifp, IFF_UP, AF_UNSPEC); |
| 2323 | EVENTHANDLER_INVOKE(ifnet_event, ifp, IFNET_EVENT_UP); |
| 2324 | } |
| 2325 | |
| 2326 | /* |
| 2327 | * Flush an interface queue. |
no test coverage detected