| 450 | void ether_gen_addr(struct ifnet *ifp, struct ether_addr *hwaddr); |
| 451 | |
| 452 | static __inline struct mbuf *ether_vlanencap(struct mbuf *m, uint16_t tag) |
| 453 | { |
| 454 | |
| 455 | return ether_vlanencap_proto(m, tag, ETHERTYPE_VLAN); |
| 456 | } |
| 457 | |
| 458 | /* new ethernet interface attached event */ |
| 459 | typedef void (*ether_ifattach_event_handler_t)(void *, struct ifnet *); |
no test coverage detected