flow_dissector: add support for IPPROTO_IPV6
Support IPPROTO_IPV6 similar to IPPROTO_IPIP Signed-off-by: Tom Herbert <therbert@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fca4189551
commit
b438f940d3
|
@ -141,6 +141,9 @@ ipv6:
|
||||||
case IPPROTO_IPIP:
|
case IPPROTO_IPIP:
|
||||||
proto = htons(ETH_P_IP);
|
proto = htons(ETH_P_IP);
|
||||||
goto ip;
|
goto ip;
|
||||||
|
case IPPROTO_IPV6:
|
||||||
|
proto = htons(ETH_P_IPV6);
|
||||||
|
goto ipv6;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue