Searched refs:snd_nxt (Results 1 – 10 of 10) sorted by relevance
/linux-2.4.37.9/net/ipv4/ |
D | tcp_output.c | 53 tp->snd_nxt = TCP_SKB_CB(skb)->end_seq; in update_send_head() 66 if (!before(tp->snd_una+tp->snd_wnd, tp->snd_nxt)) in tcp_acceptable_seq() 67 return tp->snd_nxt; in tcp_acceptable_seq() 338 tp->snd_nxt = TCP_SKB_CB(skb)->end_seq; in tcp_send_skb() 363 tp->snd_nxt = TCP_SKB_CB(skb)->end_seq; in tcp_push_one() 822 tp->high_seq = tp->snd_nxt; in tcp_simple_retransmit() 921 TCP_SKB_CB(skb)->ack_seq = tp->snd_nxt; in tcp_retransmit_skb() 1256 tp->snd_nxt = tp->write_seq; in tcp_connect()
|
D | tcp_minisocks.c | 266 u32 isn = tw->snd_nxt+65535+2; in tcp_timewait_state_process() 377 tw->snd_nxt = tp->snd_nxt; in tcp_time_wait() 691 newtp->snd_nxt = req->snt_isn + 1; in tcp_create_openreq_child()
|
D | tcp_input.c | 660 tp->rtt_seq = tp->snd_nxt; in tcp_rtt_estimator() 668 tp->rtt_seq = tp->snd_nxt; in tcp_rtt_estimator() 866 tp->rtt_seq = tp->snd_nxt; in tcp_init_metrics() 1197 tp->frto_highmark = tp->snd_nxt; in tcp_enter_frto() 1310 tp->high_seq = tp->snd_nxt; in tcp_enter_loss() 1780 tp->high_seq = tp->snd_nxt; in tcp_try_to_open() 1926 tp->high_seq = tp->snd_nxt; in tcp_fastretrans_alert() 2165 tp->vegas.beg_snd_nxt = tp->snd_nxt; in vegas_cong_avoid() 2779 if (after(ack, tp->snd_nxt)) in tcp_ack() 2862 SOCK_DEBUG(sk, "Ack %u out of %u:%u\n", ack, tp->snd_una, tp->snd_nxt); in tcp_ack() [all …]
|
D | tcp_timer.c | 340 tp->snd_una, tp->snd_nxt); in tcp_retransmit_timer()
|
D | tcp_ipv4.c | 598 if ((tp->write_seq = tw->snd_nxt+65535+2) == 0) in __tcp_v4_check_established() 1021 if (sk->state != TCP_LISTEN && !between(seq, tp->snd_una, tp->snd_nxt)) { in tcp_v4_err() 1254 tcp_v4_send_ack(skb, tw->snd_nxt, tw->rcv_nxt, in tcp_v4_timewait_ack()
|
D | tcp.c | 2099 (tp->snd_nxt != tp->write_seq && in tcp_disconnect()
|
/linux-2.4.37.9/include/net/ |
D | tcp_ecn.h | 53 !before(TCP_SKB_CB(skb)->seq, tp->snd_nxt)) { in TCP_ECN_send()
|
D | tcp.h | 181 __u32 snd_nxt; member 1176 tp->vegas.beg_snd_nxt = tp->snd_nxt; in tcp_vegas_enable() 1247 tp->high_seq = tp->snd_nxt; in __tcp_enter_cwr() 1274 !after(tp->snd_sml, tp->snd_nxt); in tcp_minshall_check()
|
D | sock.h | 281 __u32 snd_nxt; /* Next sequence we send */ member
|
/linux-2.4.37.9/net/ipv6/ |
D | tcp_ipv6.c | 469 if ((tp->write_seq = tw->snd_nxt+65535+2) == 0) in tcp_v6_check_established() 759 if (sk->state != TCP_LISTEN && !between(seq, tp->snd_una, tp->snd_nxt)) { in tcp_v6_err() 1102 tcp_v6_send_ack(skb, tw->snd_nxt, tw->rcv_nxt, in tcp_v6_timewait_ack()
|