Home
last modified time | relevance | path

Searched refs:psw (Results 1 – 2 of 2) sorted by relevance

/xnu-10002.1.13/bsd/netinet/
H A Dip_encap.c135 const struct protosw *psw; in encap4_input() local
210 psw = (const struct protosw *)match->psw; in encap4_input()
218 if (psw && psw->pr_input) { in encap4_input()
220 (*psw->pr_input)(m, off); in encap4_input()
238 const struct ip6protosw *psw; in encap6_input() local
285 psw = (const struct ip6protosw *)match->psw; in encap6_input()
293 if (psw && psw->pr_input) { in encap6_input()
295 return (*psw->pr_input)(mp, offp, proto); in encap6_input()
321 const struct sockaddr *dm, const struct protosw *psw, void *arg) in encap_attach() argument
373 new_ep->psw = psw; in encap_attach()
[all …]
H A Dip_encap.h72 const struct protosw *psw; /* only pr_input will be used */ member