| 4508 | } |
| 4509 | |
| 4510 | static pfil_return_t |
| 4511 | pf_check_out(struct mbuf **m, struct ifnet *ifp, int flags, |
| 4512 | void *ruleset __unused, struct inpcb *inp) |
| 4513 | { |
| 4514 | int chk; |
| 4515 | |
| 4516 | chk = pf_test(PF_OUT, flags, ifp, m, inp); |
| 4517 | |
| 4518 | return (pf_check_return(chk, m)); |
| 4519 | } |
| 4520 | #endif |
| 4521 | |
| 4522 | #ifdef INET6 |
nothing calls this directly
no test coverage detected