原创:(一)TCP/IP学习笔记之概述

/*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;
}

  

上一篇:sublime Html快捷键大全


下一篇:day04