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

/freebsd-12-stable/sys/netinet6/
H A Ddest6.c68 int off, dstoptlen, optlen; local
85 dstoptlen = (dstopts->ip6d_len + 1) << 3;
87 if (m->m_len < off + dstoptlen) {
88 m = m_pullup(m, off + dstoptlen);
96 off += dstoptlen;
97 dstoptlen -= sizeof(struct ip6_dest);
101 for (; dstoptlen > 0; dstoptlen -= optlen, opt += optlen) {
103 (dstoptlen < IP6OPT_MINLEN || *(opt + 1) + 2 > dstoptlen)) {
[all...]
/freebsd-12-stable/contrib/tcpdump/
H A Dprint-ip6opts.c197 int dstoptlen = 0; local
200 dstoptlen = (int)((dp->ip6d_len + 1) << 3);
201 ND_TCHECK2(*dp, dstoptlen);
205 dstoptlen - sizeof(*dp));
208 return(dstoptlen);

Completed in 103 milliseconds