====
- RAWNAT: IPv6 variants erroneously rejected masks /33-/128
- new target xt_CHECKSUM
+- xt_length2: add support for IPv6 jumbograms
Xtables-addons 1.27 (May 16 2010)
bool hit = true;
if (info->flags & XT_LENGTH_LAYER3) {
- len = sizeof(struct ipv6hdr) + ntohs(iph->payload_len);
+ if (iph->payload_len == 0)
+ /* Jumbogram */
+ len = skb->len;
+ else
+ len = sizeof(struct ipv6hdr) + ntohs(iph->payload_len);
} else {
l4proto = llayer4_proto(skb, &thoff, &par->hotdrop);
if (l4proto == NEXTHDR_MAX)