| 411 | } |
| 412 | |
| 413 | void |
| 414 | ff_veth_process_packet(void *arg, void *m) |
| 415 | { |
| 416 | struct ifnet *ifp = (struct ifnet *)arg; |
| 417 | struct mbuf *mb = (struct mbuf *)m; |
| 418 | |
| 419 | mb->m_pkthdr.rcvif = ifp; |
| 420 | |
| 421 | ifp->if_input(ifp, mb); |
| 422 | } |
| 423 | |
| 424 | static int |
| 425 | ff_veth_transmit(struct ifnet *ifp, struct mbuf *m) |