Cleanup some whitspace in this file to get it out of an upcoming patch.
MFC after: 10 days
This commit is contained in:
parent
a6087f0bd1
commit
37c975471a
@ -529,11 +529,11 @@ tcp_respond(struct tcpcb *tp, void *ipgen, struct tcphdr *th, struct mbuf *m,
|
||||
nth = (struct tcphdr *)(ip6 + 1);
|
||||
} else
|
||||
#endif /* INET6 */
|
||||
{
|
||||
bcopy((caddr_t)ip, mtod(m, caddr_t), sizeof(struct ip));
|
||||
ip = mtod(m, struct ip *);
|
||||
nth = (struct tcphdr *)(ip + 1);
|
||||
}
|
||||
{
|
||||
bcopy((caddr_t)ip, mtod(m, caddr_t), sizeof(struct ip));
|
||||
ip = mtod(m, struct ip *);
|
||||
nth = (struct tcphdr *)(ip + 1);
|
||||
}
|
||||
bcopy((caddr_t)th, (caddr_t)nth, sizeof(struct tcphdr));
|
||||
flags = TH_ACK;
|
||||
} else {
|
||||
@ -553,10 +553,10 @@ tcp_respond(struct tcpcb *tp, void *ipgen, struct tcphdr *th, struct mbuf *m,
|
||||
nth = (struct tcphdr *)(ip6 + 1);
|
||||
} else
|
||||
#endif /* INET6 */
|
||||
{
|
||||
xchg(ip->ip_dst.s_addr, ip->ip_src.s_addr, uint32_t);
|
||||
nth = (struct tcphdr *)(ip + 1);
|
||||
}
|
||||
{
|
||||
xchg(ip->ip_dst.s_addr, ip->ip_src.s_addr, uint32_t);
|
||||
nth = (struct tcphdr *)(ip + 1);
|
||||
}
|
||||
if (th != nth) {
|
||||
/*
|
||||
* this is usually a case when an extension header
|
||||
@ -902,14 +902,14 @@ tcp_discardcb(struct tcpcb *tp)
|
||||
ssthresh = 2;
|
||||
ssthresh *= (u_long)(tp->t_maxseg +
|
||||
#ifdef INET6
|
||||
(isipv6 ? sizeof (struct ip6_hdr) +
|
||||
sizeof (struct tcphdr) :
|
||||
(isipv6 ? sizeof (struct ip6_hdr) +
|
||||
sizeof (struct tcphdr) :
|
||||
#endif
|
||||
sizeof (struct tcpiphdr)
|
||||
sizeof (struct tcpiphdr)
|
||||
#ifdef INET6
|
||||
)
|
||||
)
|
||||
#endif
|
||||
);
|
||||
);
|
||||
} else
|
||||
ssthresh = 0;
|
||||
metrics.rmx_ssthresh = ssthresh;
|
||||
|
Loading…
Reference in New Issue
Block a user