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 /net/ipv6/addrconf.c | |
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 'net/ipv6/addrconf.c')
-rw-r--r-- | net/ipv6/addrconf.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c index 631b51d0ccbc..51edba5fea26 100644 --- a/net/ipv6/addrconf.c +++ b/net/ipv6/addrconf.c | |||
@@ -167,6 +167,9 @@ struct ipv6_devconf ipv6_devconf = { | |||
167 | .max_addresses = IPV6_MAX_ADDRESSES, | 167 | .max_addresses = IPV6_MAX_ADDRESSES, |
168 | .accept_ra_defrtr = 1, | 168 | .accept_ra_defrtr = 1, |
169 | .accept_ra_pinfo = 1, | 169 | .accept_ra_pinfo = 1, |
170 | #ifdef CONFIG_IPV6_ROUTER_PREF | ||
171 | .accept_ra_rtr_pref = 1, | ||
172 | #endif | ||
170 | }; | 173 | }; |
171 | 174 | ||
172 | static struct ipv6_devconf ipv6_devconf_dflt = { | 175 | static struct ipv6_devconf ipv6_devconf_dflt = { |
@@ -190,6 +193,9 @@ static struct ipv6_devconf ipv6_devconf_dflt = { | |||
190 | .max_addresses = IPV6_MAX_ADDRESSES, | 193 | .max_addresses = IPV6_MAX_ADDRESSES, |
191 | .accept_ra_defrtr = 1, | 194 | .accept_ra_defrtr = 1, |
192 | .accept_ra_pinfo = 1, | 195 | .accept_ra_pinfo = 1, |
196 | #ifdef CONFIG_IPV6_ROUTER_PREF | ||
197 | .accept_ra_rtr_pref = 1, | ||
198 | #endif | ||
193 | }; | 199 | }; |
194 | 200 | ||
195 | /* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */ | 201 | /* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */ |
@@ -3122,6 +3128,9 @@ static void inline ipv6_store_devconf(struct ipv6_devconf *cnf, | |||
3122 | array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses; | 3128 | array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses; |
3123 | array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr; | 3129 | array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr; |
3124 | array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo; | 3130 | array[DEVCONF_ACCEPT_RA_PINFO] = cnf->accept_ra_pinfo; |
3131 | #ifdef CONFIG_IPV6_ROUTER_PREF | ||
3132 | array[DEVCONF_ACCEPT_RA_RTR_PREF] = cnf->accept_ra_rtr_pref; | ||
3133 | #endif | ||
3125 | } | 3134 | } |
3126 | 3135 | ||
3127 | static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev, | 3136 | static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev, |
@@ -3590,6 +3599,16 @@ static struct addrconf_sysctl_table | |||
3590 | .mode = 0644, | 3599 | .mode = 0644, |
3591 | .proc_handler = &proc_dointvec, | 3600 | .proc_handler = &proc_dointvec, |
3592 | }, | 3601 | }, |
3602 | #ifdef CONFIG_IPV6_ROUTER_PREF | ||
3603 | { | ||
3604 | .ctl_name = NET_IPV6_ACCEPT_RA_RTR_PREF, | ||
3605 | .procname = "accept_ra_rtr_pref", | ||
3606 | .data = &ipv6_devconf.accept_ra_rtr_pref, | ||
3607 | .maxlen = sizeof(int), | ||
3608 | .mode = 0644, | ||
3609 | .proc_handler = &proc_dointvec, | ||
3610 | }, | ||
3611 | #endif | ||
3593 | { | 3612 | { |
3594 | .ctl_name = 0, /* sentinel */ | 3613 | .ctl_name = 0, /* sentinel */ |
3595 | } | 3614 | } |