/*BSD_Lite原码*/void
tcp_quench(inp, errno)
struct inpcb *inp;
int errno;//相当于void tcp_quench(struct inpcb*inp,int errno)
{
struct tcpcb *tp = intotcpcb(inp);
if (tp)
tp->snd_cwnd = tp->t_maxseg;
}
原文:https://www.cnblogs.com/still-smile/p/12004009.html