| 4497 | |
| 4498 | #ifdef INET |
| 4499 | static pfil_return_t |
| 4500 | pf_check_in(struct mbuf **m, struct ifnet *ifp, int flags, |
| 4501 | void *ruleset __unused, struct inpcb *inp) |
| 4502 | { |
| 4503 | int chk; |
| 4504 | |
| 4505 | chk = pf_test(PF_IN, flags, ifp, m, inp); |
| 4506 | |
| 4507 | return (pf_check_return(chk, m)); |
| 4508 | } |
| 4509 | |
| 4510 | static pfil_return_t |
| 4511 | pf_check_out(struct mbuf **m, struct ifnet *ifp, int flags, |
nothing calls this directly
no test coverage detected