tcp_output.c (bf550fc93d9855872a95e69e4002256110d89858) | tcp_output.c (c7781a6e3c4a9a17e144ec2db00ebfea327bd627) |
---|---|
1/* 2 * INET An implementation of the TCP/IP protocol suite for the LINUX 3 * operating system. INET is implemented using the BSD Socket 4 * interface as the means of communication with the user level. 5 * 6 * Implementation of the Transmission Control Protocol(TCP). 7 * 8 * Authors: Ross Biro --- 2800 unchanged lines hidden (view full) --- 2809 tcp_init_wl(tp, 0); 2810 tp->snd_una = tp->write_seq; 2811 tp->snd_sml = tp->write_seq; 2812 tp->snd_up = tp->write_seq; 2813 tp->snd_nxt = tp->write_seq; 2814 2815 if (likely(!tp->repair)) 2816 tp->rcv_nxt = 0; | 1/* 2 * INET An implementation of the TCP/IP protocol suite for the LINUX 3 * operating system. INET is implemented using the BSD Socket 4 * interface as the means of communication with the user level. 5 * 6 * Implementation of the Transmission Control Protocol(TCP). 7 * 8 * Authors: Ross Biro --- 2800 unchanged lines hidden (view full) --- 2809 tcp_init_wl(tp, 0); 2810 tp->snd_una = tp->write_seq; 2811 tp->snd_sml = tp->write_seq; 2812 tp->snd_up = tp->write_seq; 2813 tp->snd_nxt = tp->write_seq; 2814 2815 if (likely(!tp->repair)) 2816 tp->rcv_nxt = 0; |
2817 else 2818 tp->rcv_tstamp = tcp_time_stamp; |
|
2817 tp->rcv_wup = tp->rcv_nxt; 2818 tp->copied_seq = tp->rcv_nxt; 2819 2820 inet_csk(sk)->icsk_rto = TCP_TIMEOUT_INIT; 2821 inet_csk(sk)->icsk_retransmits = 0; 2822 tcp_clear_retrans(tp); 2823} 2824 --- 361 unchanged lines hidden --- | 2819 tp->rcv_wup = tp->rcv_nxt; 2820 tp->copied_seq = tp->rcv_nxt; 2821 2822 inet_csk(sk)->icsk_rto = TCP_TIMEOUT_INIT; 2823 inet_csk(sk)->icsk_retransmits = 0; 2824 tcp_clear_retrans(tp); 2825} 2826 --- 361 unchanged lines hidden --- |