diff options
author | Masahide NAKAMURA <nakam@linux-ipv6.org> | 2006-08-23 20:39:03 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-22 15:07:03 -0700 |
commit | 2ce4272a699c731b9736d76126dc742353e381db (patch) | |
tree | ce60343164fa72dde2207d4c4045554662efa141 /include | |
parent | 6e8f4d48b265225bdf437bbf3151b0d6700dda22 (diff) | |
download | linux-3.10-2ce4272a699c731b9736d76126dc742353e381db.tar.gz linux-3.10-2ce4272a699c731b9736d76126dc742353e381db.tar.bz2 linux-3.10-2ce4272a699c731b9736d76126dc742353e381db.zip |
[IPV6] MIP6: Transformation support mobility header.
Transformation support mobility header.
Based on MIPL2 kernel patch.
Signed-off-by: Masahide NAKAMURA <nakam@linux-ipv6.org>
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/xfrm.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/net/xfrm.h b/include/net/xfrm.h index 7f1630630dc..13488e7ba68 100644 --- a/include/net/xfrm.h +++ b/include/net/xfrm.h @@ -546,6 +546,11 @@ u16 xfrm_flowi_sport(struct flowi *fl) case IPPROTO_ICMPV6: port = htons(fl->fl_icmp_type); break; +#ifdef CONFIG_IPV6_MIP6 + case IPPROTO_MH: + port = htons(fl->fl_mh_type); + break; +#endif default: port = 0; /*XXX*/ } |