Searched refs:ipsctplen (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/inet/sctp/
H A Dsctp_cookie.c481 size_t ipsctplen; local
510 ipsctplen = sctp->sctp_ip_hdr_len;
514 ipsctplen = sctp->sctp_ip_hdr6_len;
589 ipsctplen += sizeof (*iacksh) + iacklen;
596 if ((pad = ipsctplen % SCTP_ALIGN) != 0) {
598 ipsctplen += pad;
658 iackmp = allocb(ipsctplen + sctps->sctps_wroff_xtra, BPRI_MED);
676 iackiph->ipha_length = htons(ipsctplen + errlen);
686 iackip6h->ip6_plen = htons(ipsctplen + errlen - IPV6_HDR_LEN);
690 ixa->ixa_pktlen = ipsctplen
[all...]
H A Dsctp_common.c287 size_t ipsctplen; local
315 ipsctplen = sctp->sctp_hdr_len;
317 ipsctplen = sctp->sctp_hdr6_len;
320 mp = allocb(ipsctplen + sctps->sctps_wroff_xtra + trailer, BPRI_MED);
326 mp->b_wptr = mp->b_rptr + ipsctplen;
333 bcopy(sctp->sctp_iphc, mp->b_rptr, ipsctplen);
346 bcopy(sctp->sctp_iphc6, mp->b_rptr, ipsctplen);

Completed in 70 milliseconds