diff options
author | Jan Engelhardt <jengelh@computergmbh.de> | 2008-01-21 06:18:08 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:08:44 -0500 |
commit | 1e637c74b0f84eaca02b914c0b8c6f67276e9697 (patch) | |
tree | 18e42bbac80529c36ac3e6a8e5b68538e0db10df /net/ipv4/fib_frontend.c | |
parent | 96750162b5f7350ec7ba7cf747a6623858d65dd2 (diff) |
[IPV4]: Enable use of 240/4 address space.
This short patch modifies the IPv4 networking to enable use of the
240.0.0.0/4 (aka "class-E") address space as propsed in the internet
draft draft-fuller-240space-00.txt.
Signed-off-by: Jan Engelhardt <jengelh@computergmbh.de>
Acked-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/fib_frontend.c')
-rw-r--r-- | net/ipv4/fib_frontend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/fib_frontend.c b/net/ipv4/fib_frontend.c index 62bd791c204e..8987046d97f3 100644 --- a/net/ipv4/fib_frontend.c +++ b/net/ipv4/fib_frontend.c | |||
@@ -176,7 +176,7 @@ static inline unsigned __inet_dev_addr_type(struct net *net, | |||
176 | unsigned ret = RTN_BROADCAST; | 176 | unsigned ret = RTN_BROADCAST; |
177 | struct fib_table *local_table; | 177 | struct fib_table *local_table; |
178 | 178 | ||
179 | if (ipv4_is_zeronet(addr) || ipv4_is_badclass(addr)) | 179 | if (ipv4_is_zeronet(addr) || ipv4_is_lbcast(addr)) |
180 | return RTN_BROADCAST; | 180 | return RTN_BROADCAST; |
181 | if (ipv4_is_multicast(addr)) | 181 | if (ipv4_is_multicast(addr)) |
182 | return RTN_MULTICAST; | 182 | return RTN_MULTICAST; |