diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2006-03-20 20:06:42 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-03-20 20:06:42 -0500 |
commit | e317da96227cef28a137e2d1ad790b23e518dd2b (patch) | |
tree | dfe27f9855eb80cacb381ed3012acdb4a4d9fd11 /net/ipv6 | |
parent | 70ceb4f53929f73746be72f73707cd9f8753e2fc (diff) |
[IPV6]: ROUTE: Flag RTF_DEFAULT for Route Infomation for ::/0.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/route.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c index 0f30ee3d94ea..f587a0e6cf34 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c | |||
@@ -1403,6 +1403,9 @@ static struct rt6_info *rt6_add_route_info(struct in6_addr *prefix, int prefixle | |||
1403 | ipv6_addr_copy(&rtmsg.rtmsg_gateway, gwaddr); | 1403 | ipv6_addr_copy(&rtmsg.rtmsg_gateway, gwaddr); |
1404 | rtmsg.rtmsg_metric = 1024; | 1404 | rtmsg.rtmsg_metric = 1024; |
1405 | rtmsg.rtmsg_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO | RTF_UP | RTF_PREF(pref); | 1405 | rtmsg.rtmsg_flags = RTF_GATEWAY | RTF_ADDRCONF | RTF_ROUTEINFO | RTF_UP | RTF_PREF(pref); |
1406 | /* We should treat it as a default route if prefix length is 0. */ | ||
1407 | if (!prefixlen) | ||
1408 | rtmsg.rtmsg_flags |= RTF_DEFAULT; | ||
1406 | rtmsg.rtmsg_ifindex = ifindex; | 1409 | rtmsg.rtmsg_ifindex = ifindex; |
1407 | 1410 | ||
1408 | ip6_route_add(&rtmsg, NULL, NULL, NULL); | 1411 | ip6_route_add(&rtmsg, NULL, NULL, NULL); |