diff options
author | Tom Herbert <therbert@google.com> | 2013-07-29 11:07:42 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-07-30 19:16:52 -0700 |
commit | b438f940d3541f478c6b37106ed095f1be7959ef (patch) | |
tree | ee997b510b1cb91a3977945f1f119187f5c9ab89 /net/core | |
parent | fca418955148e4f4555d7ce911e9eee3e7970a7f (diff) | |
download | linux-b438f940d3541f478c6b37106ed095f1be7959ef.tar.bz2 |
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>
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/flow_dissector.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/core/flow_dissector.c b/net/core/flow_dissector.c index 3259446f3026..ade9ff1c1980 100644 --- a/net/core/flow_dissector.c +++ b/net/core/flow_dissector.c @@ -141,6 +141,9 @@ ipv6: case IPPROTO_IPIP: proto = htons(ETH_P_IP); goto ip; + case IPPROTO_IPV6: + proto = htons(ETH_P_IPV6); + goto ipv6; default: break; } |