* bridge_rtlookup: * * Lookup the destination interface for an address. */
| 2760 | * Lookup the destination interface for an address. |
| 2761 | */ |
| 2762 | static struct ifnet * |
| 2763 | bridge_rtlookup(struct bridge_softc *sc, const uint8_t *addr, uint16_t vlan) |
| 2764 | { |
| 2765 | struct bridge_rtnode *brt; |
| 2766 | |
| 2767 | NET_EPOCH_ASSERT(); |
| 2768 | |
| 2769 | if ((brt = bridge_rtnode_lookup(sc, addr, vlan)) == NULL) |
| 2770 | return (NULL); |
| 2771 | |
| 2772 | return (brt->brt_ifp); |
| 2773 | } |
| 2774 | |
| 2775 | /* |
| 2776 | * bridge_rttrim: |
no test coverage detected