summaryrefslogtreecommitdiffstats
path: root/sys/net/if_llatbl.h
diff options
context:
space:
mode:
authorqingli <qingli@FreeBSD.org>2009-12-30 21:35:34 +0000
committerqingli <qingli@FreeBSD.org>2009-12-30 21:35:34 +0000
commited965a92bc17f25c5049fbd529d10a9e94f8a3a7 (patch)
tree8e2dcb46479d9e8deaedba15ff39e4bf06edf8c9 /sys/net/if_llatbl.h
parent05e668091314a2bdc6f8d36ac2e8abf4c424a09a (diff)
downloadFreeBSD-src-ed965a92bc17f25c5049fbd529d10a9e94f8a3a7.zip
FreeBSD-src-ed965a92bc17f25c5049fbd529d10a9e94f8a3a7.tar.gz
The proxy arp entries could not be added into the system over the
IFF_POINTOPOINT link types. The reason was due to the routing entry returned from the kernel covering the remote end is of an interface type that does not support ARP. This patch fixes this problem by providing a hint to the kernel routing code, which indicates the prefix route instead of the PPP host route should be returned to the caller. Since a host route to the local end point is also added into the routing table, and there could be multiple such instantiations due to multiple PPP links can be created with the same local end IP address, this patch also fixes the loopback route installation failure problem observed prior to this patch. The reference count of loopback route to local end would be either incremented or decremented. The first instantiation would create the entry and the last removal would delete the route entry. MFC after: 5 days
Diffstat (limited to 'sys/net/if_llatbl.h')
-rw-r--r--sys/net/if_llatbl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/if_llatbl.h b/sys/net/if_llatbl.h
index f54c78a..21357eb 100644
--- a/sys/net/if_llatbl.h
+++ b/sys/net/if_llatbl.h
@@ -159,7 +159,7 @@ struct lltable {
const struct sockaddr *mask);
struct llentry * (*llt_lookup)(struct lltable *, u_int flags,
const struct sockaddr *l3addr);
- int (*llt_rtcheck)(struct ifnet *,
+ int (*llt_rtcheck)(struct ifnet *, u_int flags,
const struct sockaddr *);
int (*llt_dump)(struct lltable *,
struct sysctl_req *);
OpenPOWER on IntegriCloud