Home
last modified time | relevance | path

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

/third_party/lwip/src/core/ipv6/
Dip6.c546 if ((IP6_HLEN > p->len) || (IP6H_PLEN(ip6hdr) > (p->tot_len - IP6_HLEN))) {
552 if ((IP6H_PLEN(ip6hdr) + IP6_HLEN) > p->tot_len) {
555 (u16_t)(IP6H_PLEN(ip6hdr) + IP6_HLEN), p->tot_len));
566 pbuf_realloc(p, (u16_t)(IP6_HLEN + IP6H_PLEN(ip6hdr)));
986 if (IP6_FRAG_MBIT(frag_hdr) && (IP6H_PLEN(ip6hdr) & 0x7)) {
1465 IP6H_PLEN(ip6hdr),
/third_party/lwip/src/include/lwip/prot/
Dip6.h102 #define IP6H_PLEN(hdr) (lwip_ntohs((hdr)->_plen)) macro