diff options
author | YOSHIFUJI Hideaki | 2007-05-23 06:28:48 +0200 |
---|---|---|
committer | David S. Miller | 2007-07-11 07:56:31 +0200 |
commit | 4c752098f529f41abfc985426a3eca0f2cb96676 (patch) | |
tree | 038e2f0c488619ff1cd7d278d393852ea7202f6a /include | |
parent | [IPV6]: Do not send RH0 anymore. (diff) | |
download | kernel-qcow2-linux-4c752098f529f41abfc985426a3eca0f2cb96676.tar.gz kernel-qcow2-linux-4c752098f529f41abfc985426a3eca0f2cb96676.tar.xz kernel-qcow2-linux-4c752098f529f41abfc985426a3eca0f2cb96676.zip |
[IPV6]: Make IPV6_{RECV,2292}RTHDR boolean options.
Because reversing RH0 is no longer supported by deprecation
of RH0, let's make IPV6_{RECV,2292}RTHDR boolean options.
Boolean are more appropriate from standard POV.
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/linux/ipv6.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/ipv6.h b/include/linux/ipv6.h index cb3118cf277c..97983dc9df13 100644 --- a/include/linux/ipv6.h +++ b/include/linux/ipv6.h @@ -299,8 +299,8 @@ struct ipv6_pinfo { /* pktoption flags */ union { struct { - __u16 srcrt:2, - osrcrt:2, + __u16 srcrt:1, + osrcrt:1, rxinfo:1, rxoinfo:1, rxhlim:1, |