MCPcopy Create free account
hub / github.com/F-Stack/f-stack / pf_check6_out

Function pf_check6_out

freebsd/netpfil/pf/pf_ioctl.c:4541–4552  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4539}
4540
4541static pfil_return_t
4542pf_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

Callers

nothing calls this directly

Calls 2

pf_test6Function · 0.85
pf_check_returnFunction · 0.85

Tested by

no test coverage detected