| 4539 | } |
| 4540 | |
| 4541 | static pfil_return_t |
| 4542 | pf_check6_out(struct mbuf **m, struct ifnet *ifp, int flags, |
| 4543 | void *ruleset __unused, struct inpcb *inp) |
| 4544 | { |
| 4545 | int chk; |
| 4546 | |
| 4547 | CURVNET_SET(ifp->if_vnet); |
| 4548 | chk = pf_test6(PF_OUT, flags, ifp, m, inp); |
| 4549 | CURVNET_RESTORE(); |
| 4550 | |
| 4551 | return (pf_check_return(chk, m)); |
| 4552 | } |
| 4553 | #endif /* INET6 */ |
| 4554 | |
| 4555 | #ifdef INET |
nothing calls this directly
no test coverage detected