/*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; }
2024-01-08 18:14:12
/*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; }
下一篇:day04