| version 1.249, 2007/05/02 20:40:25 |
version 1.250, 2007/07/19 20:48:55 |
|
|
| */ |
*/ |
| IPQ_LOCK(); |
IPQ_LOCK(); |
| hash = IPREASS_HASH(ip->ip_src.s_addr, ip->ip_id); |
hash = IPREASS_HASH(ip->ip_src.s_addr, ip->ip_id); |
| /* XXX LIST_FOREACH(fp, &ipq[hash], ipq_q) */ |
LIST_FOREACH(fp, &ipq[hash], ipq_q) { |
| for (fp = LIST_FIRST(&ipq[hash]); fp != NULL; |
|
| fp = LIST_NEXT(fp, ipq_q)) { |
|
| if (ip->ip_id == fp->ipq_id && |
if (ip->ip_id == fp->ipq_id && |
| in_hosteq(ip->ip_src, fp->ipq_src) && |
in_hosteq(ip->ip_src, fp->ipq_src) && |
| in_hosteq(ip->ip_dst, fp->ipq_dst) && |
in_hosteq(ip->ip_dst, fp->ipq_dst) && |
| Line 1895 ip_forward(struct mbuf *m, int srcrt) |
|
| Line 1893 ip_forward(struct mbuf *m, int srcrt) |
|
| */ |
*/ |
| if (rt->rt_ifp == m->m_pkthdr.rcvif && |
if (rt->rt_ifp == m->m_pkthdr.rcvif && |
| (rt->rt_flags & (RTF_DYNAMIC|RTF_MODIFIED)) == 0 && |
(rt->rt_flags & (RTF_DYNAMIC|RTF_MODIFIED)) == 0 && |
| !in_nullhost(satosin(rt_key(rt))->sin_addr) && |
!in_nullhost(satocsin(rt_getkey(rt))->sin_addr) && |
| ipsendredirects && !srcrt) { |
ipsendredirects && !srcrt) { |
| if (rt->rt_ifa && |
if (rt->rt_ifa && |
| (ip->ip_src.s_addr & ifatoia(rt->rt_ifa)->ia_subnetmask) == |
(ip->ip_src.s_addr & ifatoia(rt->rt_ifa)->ia_subnetmask) == |