diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2006-03-20 20:05:30 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-03-20 20:05:30 -0500 |
commit | 930d6ff2e2a5f1538448d3b0b2652a8f0c0f6cba (patch) | |
tree | 0ea6ca2d6d04c13bf05100a70a4a21d7cd6eeb82 /include/linux/ipv6.h | |
parent | 270972554c91acd29412d8b6a10e606041012106 (diff) |
[IPV6]: ROUTE: Add accept_ra_rtr_pref sysctl.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/ipv6.h')
-rw-r--r-- | include/linux/ipv6.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/ipv6.h b/include/linux/ipv6.h index 2c3b799480c5..108b75dccd9f 100644 --- a/include/linux/ipv6.h +++ b/include/linux/ipv6.h | |||
@@ -147,6 +147,9 @@ struct ipv6_devconf { | |||
147 | __s32 max_addresses; | 147 | __s32 max_addresses; |
148 | __s32 accept_ra_defrtr; | 148 | __s32 accept_ra_defrtr; |
149 | __s32 accept_ra_pinfo; | 149 | __s32 accept_ra_pinfo; |
150 | #ifdef CONFIG_IPV6_ROUTER_PREF | ||
151 | __s32 accept_ra_rtr_pref; | ||
152 | #endif | ||
150 | void *sysctl; | 153 | void *sysctl; |
151 | }; | 154 | }; |
152 | 155 | ||
@@ -171,6 +174,7 @@ enum { | |||
171 | DEVCONF_FORCE_MLD_VERSION, | 174 | DEVCONF_FORCE_MLD_VERSION, |
172 | DEVCONF_ACCEPT_RA_DEFRTR, | 175 | DEVCONF_ACCEPT_RA_DEFRTR, |
173 | DEVCONF_ACCEPT_RA_PINFO, | 176 | DEVCONF_ACCEPT_RA_PINFO, |
177 | DEVCONF_ACCEPT_RA_RTR_PREF, | ||
174 | DEVCONF_MAX | 178 | DEVCONF_MAX |
175 | }; | 179 | }; |
176 | 180 | ||