Home
last modified time | relevance | path

Searched refs:snd_wnd (Results 1 – 6 of 6) sorted by relevance

/linux-2.4.37.9/net/ipv4/
Dtcp_output.c66 if (!before(tp->snd_una+tp->snd_wnd, tp->snd_nxt)) in tcp_acceptable_seq()
69 return tp->snd_una+tp->snd_wnd; in tcp_acceptable_seq()
730 if (after(TCP_SKB_CB(next_skb)->end_seq, tp->snd_una+tp->snd_wnd)) in tcp_retrans_try_collapse()
852 if (!before(TCP_SKB_CB(skb)->seq, tp->snd_una+tp->snd_wnd) in tcp_retransmit_skb()
1220 tp->snd_wnd = 0; in tcp_connect_init()
1405 before(TCP_SKB_CB(skb)->seq, tp->snd_una+tp->snd_wnd)) { in tcp_write_wakeup()
1408 int seg_size = tp->snd_una+tp->snd_wnd-TCP_SKB_CB(skb)->seq; in tcp_write_wakeup()
Dtcp_timer.c128 (!tp->snd_wnd && !tp->packets_out)) in tcp_out_of_resources()
329 if (tp->snd_wnd == 0 && !sk->dead && in tcp_retransmit_timer()
Dtcp_input.c2431 if (!after(TCP_SKB_CB(tp->send_head)->end_seq, tp->snd_una + tp->snd_wnd)) { in tcp_ack_probe()
2463 (ack_seq == tp->snd_wl1 && nwin > tp->snd_wnd)); in tcp_may_update_window()
2484 if (tp->snd_wnd != nwin) { in tcp_ack_update_window()
2485 tp->snd_wnd = nwin; in tcp_ack_update_window()
3865 if (after(TCP_SKB_CB(skb)->end_seq, tp->snd_una + tp->snd_wnd) || in __tcp_data_snd_check()
4403 tp->snd_wnd = ntohs(th->window); in tcp_rcv_synsent_state_process()
4433 __tcp_fast_path_on(tp, tp->snd_wnd); in tcp_rcv_synsent_state_process()
4511 tp->snd_wnd = ntohs(th->window); in tcp_rcv_synsent_state_process()
4513 tp->max_window = tp->snd_wnd; in tcp_rcv_synsent_state_process()
4678 tp->snd_wnd = ntohs(th->window) << tp->snd_wscale; in tcp_rcv_state_process()
Dtcp_minisocks.c775 newtp->snd_wnd = ntohs(skb->h.th->window) << newtp->snd_wscale; in tcp_create_openreq_child()
776 newtp->max_window = newtp->snd_wnd; in tcp_create_openreq_child()
/linux-2.4.37.9/include/net/
Dtcp.h972 static __inline__ void __tcp_fast_path_on(struct tcp_opt *tp, u32 snd_wnd) in __tcp_fast_path_on() argument
976 snd_wnd); in __tcp_fast_path_on()
981 __tcp_fast_path_on(tp, tp->snd_wnd>>tp->snd_wscale); in tcp_fast_path_on()
1336 !after(TCP_SKB_CB(skb)->end_seq, tp->snd_una + tp->snd_wnd)); in tcp_snd_test()
1964 tp->snd_una + tp->snd_wnd)); in tcp_use_frto()
Dsock.h311 __u32 snd_wnd; /* The window we expect to receive */ member