Searched refs:nexthdrp (Results 1 - 5 of 5) sorted by relevance

/darwin-on-arm/xnu/bsd/netinet6/
H A Dipcomp_output.c91 * m nexthdrp md
95 * m nexthdrp mprev md
104 ipcomp_output(m, nexthdrp, md, af, sav)
106 u_char *nexthdrp;
298 ipcomp->comp_nxt = *nexthdrp;
299 *nexthdrp = IPPROTO_IPCOMP;
367 ipcomp6_output(m, nexthdrp, md, sav)
369 u_char *nexthdrp;
379 return ipcomp_output(m, nexthdrp, md, AF_INET6, sav);
H A Dah_output.c401 ah6_output(m, nexthdrp, md, sav)
403 u_char *nexthdrp;
490 ahdr->ah_nxt = *nexthdrp;
491 *nexthdrp = IPPROTO_AH;
501 ahdr->ah_nxt = *nexthdrp;
502 *nexthdrp = IPPROTO_AH;
H A Desp_output.c219 * m nexthdrp md
223 * m nexthdrp mprev md
234 esp_output(m, nexthdrp, md, af, sav)
236 u_char *nexthdrp;
643 nxt = *nexthdrp;
645 *nexthdrp = IPPROTO_UDP;
656 *nexthdrp = IPPROTO_ESP;
853 esp6_output(m, nexthdrp, md, sav)
855 u_char *nexthdrp;
864 return esp_output(m, nexthdrp, m
[all...]
H A Dip6_output.c572 u_char *nexthdrp = &ip6->ip6_nxt; local
611 nexthdrp, IPPROTO_HOPOPTS);
613 nexthdrp, IPPROTO_DSTOPTS);
615 nexthdrp, IPPROTO_ROUTING);
691 error = ipsec6_output_trans(&ipsec_state, nexthdrp, mprev, sp, flags,
H A Dipsec.c3277 u_char *nexthdrp,
3297 if (!nexthdrp)
3298 panic("nexthdrp == NULL in ipsec6_output_trans");
3399 error = esp6_output(state->m, nexthdrp, mprev->m_next, sav);
3406 error = ah6_output(state->m, nexthdrp, mprev->m_next, sav);
3409 error = ipcomp6_output(state->m, nexthdrp, mprev->m_next, sav);
3275 ipsec6_output_trans( struct ipsec_output_state *state, u_char *nexthdrp, struct mbuf *mprev, struct secpolicy *sp, __unused int flags, int *tun) argument

Completed in 23 milliseconds