Home
last modified time | relevance | path

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

/f-stack/freebsd/netinet6/
H A Ddest6.c68 int off, dstoptlen, optlen; in dest6_input() local
85 dstoptlen = (dstopts->ip6d_len + 1) << 3; in dest6_input()
87 if (m->m_len < off + dstoptlen) { in dest6_input()
88 m = m_pullup(m, off + dstoptlen); in dest6_input()
96 off += dstoptlen; in dest6_input()
97 dstoptlen -= sizeof(struct ip6_dest); in dest6_input()
101 for (; dstoptlen > 0; dstoptlen -= optlen, opt += optlen) { in dest6_input()
103 (dstoptlen < IP6OPT_MINLEN || *(opt + 1) + 2 > dstoptlen)) { in dest6_input()