patch-1.3.47 linux/net/ipv4/ip_input.c
Next file: linux/scripts/Configure
Previous file: linux/net/ipv4/ip_alias.c
Back to the patch index
Back to the overall index
- Lines: 29
- Date:
Tue Dec 12 07:05:07 1995
- Orig file:
v1.3.46/linux/net/ipv4/ip_input.c
- Orig date:
Mon Oct 23 18:02:23 1995
diff -u --recursive --new-file v1.3.46/linux/net/ipv4/ip_input.c linux/net/ipv4/ip_input.c
@@ -151,6 +151,9 @@
#include <linux/firewall.h>
#include <linux/mroute.h>
#include <net/netlink.h>
+#ifdef CONFIG_NET_ALIAS
+#include <linux/net_alias.h>
+#endif
extern int last_retran;
extern void sort_send(struct sock *sk);
@@ -313,7 +316,18 @@
* function entry.
*/
+ /*
+ * also check device aliases address : will avoid
+ * a full lookup over device chain
+ */
+
+#ifdef CONFIG_NET_ALIAS
+ if ( iph->daddr == skb->dev->pa_addr ||
+ ( net_alias_has(skb->dev) && net_alias_addr_chk32(skb->dev,AF_INET, iph->daddr )) ||
+ (brd = ip_chk_addr(iph->daddr)) != 0)
+#else
if ( iph->daddr == skb->dev->pa_addr || (brd = ip_chk_addr(iph->daddr)) != 0)
+#endif
{
if (opt && opt->srr)
{
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov
with Sam's (original) version of this