Home
last modified time | relevance | path

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

/components/net/lwip/lwip-2.0.3/src/core/ipv6/
A Dip6_frag.c672 u16_t nfb; in ip6_frag() local
688 nfb = (mtu - (IP6_HLEN + IP6_FRAG_HLEN)) & IP6_FRAG_OFFSET_MASK; in ip6_frag()
691 last = (left <= nfb); in ip6_frag()
694 cop = last ? left : nfb; in ip6_frag()
/components/net/lwip/lwip-1.4.1/src/core/ipv4/
A Dip_frag.c679 u16_t nfb; in ip_frag() local
720 nfb = (mtu - IP_HLEN) / 8; in ip_frag()
732 cop = last ? left : nfb * 8; in ip_frag()
855 ofo += nfb; in ip_frag()
/components/net/lwip/lwip-2.0.3/src/core/ipv4/
A Dip4_frag.c728 const u16_t nfb = (netif->mtu - IP_HLEN) / 8; in ip4_frag() local
748 fragsize = LWIP_MIN(left, nfb * 8); in ip4_frag()
854 ofo += nfb; in ip4_frag()
/components/net/lwip/lwip-2.1.2/src/core/ipv4/
A Dip4_frag.c750 const u16_t nfb = (u16_t)((netif->mtu - IP_HLEN) / 8); in ip4_frag() local
776 fragsize = LWIP_MIN(left, (u16_t)(nfb * 8)); in ip4_frag()
884 ofo = (u16_t)(ofo + nfb); in ip4_frag()
/components/net/lwip/lwip-2.1.2/src/core/ipv6/
A Dip6_frag.c734 const u16_t nfb = (u16_t)((mtu - (IP6_HLEN + IP6_FRAG_HLEN)) & IP6_FRAG_OFFSET_MASK); in ip6_frag() local
748 last = (left <= nfb); in ip6_frag()
751 cop = last ? left : nfb; in ip6_frag()

Completed in 17 milliseconds