Searched refs:end_seq (Results 1 – 9 of 9) sorted by relevance
/linux-2.4.37.9/net/ipv4/ |
D | tcp_input.c | 443 (TCP_SKB_CB(skb)->end_seq - in tcp_rcv_rtt_measure_ts() 985 __u32 end_seq = ntohl(sp->end_seq); in tcp_sacktag_write_queue() local 998 !after(end_seq, ntohl(sp[1].end_seq)) && in tcp_sacktag_write_queue() 1008 !after(end_seq, prior_snd_una) && in tcp_sacktag_write_queue() 1009 after(end_seq, tp->undo_marker)) in tcp_sacktag_write_queue() 1021 if (after(end_seq, tp->high_seq)) in tcp_sacktag_write_queue() 1031 if(!before(TCP_SKB_CB(skb)->seq, end_seq)) in tcp_sacktag_write_queue() 1037 !before(end_seq, TCP_SKB_CB(skb)->end_seq); in tcp_sacktag_write_queue() 1042 after(TCP_SKB_CB(skb)->end_seq, tp->undo_marker)) in tcp_sacktag_write_queue() 1046 if (!after(TCP_SKB_CB(skb)->end_seq, tp->snd_una)) { in tcp_sacktag_write_queue() [all …]
|
D | tcp_output.c | 53 tp->snd_nxt = TCP_SKB_CB(skb)->end_seq; in update_send_head() 330 tp->write_seq = TCP_SKB_CB(skb)->end_seq; in tcp_send_skb() 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() 460 TCP_SKB_CB(buff)->end_seq = TCP_SKB_CB(skb)->end_seq; in tcp_fragment() 461 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(buff)->seq; in tcp_fragment() 730 if (after(TCP_SKB_CB(next_skb)->end_seq, tp->snd_una+tp->snd_wnd)) in tcp_retrans_try_collapse() 753 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(next_skb)->end_seq; in tcp_retrans_try_collapse() 882 tp->snd_una == (TCP_SKB_CB(skb)->end_seq - 1)) { in tcp_retransmit_skb() 884 TCP_SKB_CB(skb)->seq = TCP_SKB_CB(skb)->end_seq - 1; in tcp_retransmit_skb() [all …]
|
D | tcp_minisocks.c | 41 static __inline__ int tcp_in_window(u32 seq, u32 end_seq, u32 s_win, u32 e_win) in tcp_in_window() argument 45 if (after(end_seq, s_win) && before(seq, e_win)) in tcp_in_window() 47 return (seq == e_win && seq == end_seq); in tcp_in_window() 150 !tcp_in_window(TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb)->end_seq, in tcp_timewait_state_process() 161 if (!after(TCP_SKB_CB(skb)->end_seq, tw->rcv_nxt) || in tcp_timewait_state_process() 162 TCP_SKB_CB(skb)->end_seq == TCP_SKB_CB(skb)->seq) { in tcp_timewait_state_process() 170 if (!th->fin || TCP_SKB_CB(skb)->end_seq != tw->rcv_nxt+1) { in tcp_timewait_state_process() 180 tw->rcv_nxt = TCP_SKB_CB(skb)->end_seq; in tcp_timewait_state_process() 219 (TCP_SKB_CB(skb)->seq == TCP_SKB_CB(skb)->end_seq || th->rst))) { in tcp_timewait_state_process() 917 if (paws_reject || !tcp_in_window(TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb)->end_seq, in tcp_check_req() [all …]
|
D | tcp.c | 791 TCP_SKB_CB(skb)->end_seq = tp->write_seq; in skb_entail() 893 TCP_SKB_CB(skb)->end_seq += copy; in do_tcp_sendpages() 1161 TCP_SKB_CB(skb)->end_seq += copy; in tcp_sendmsg() 1292 BUG_TRAP(skb==NULL || before(tp->copied_seq, TCP_SKB_CB(skb)->end_seq)); in cleanup_rbuf() 1932 u32 len = TCP_SKB_CB(skb)->end_seq - TCP_SKB_CB(skb)->seq - skb->h.th->fin; in tcp_close()
|
D | tcp_ipv4.c | 1745 TCP_SKB_CB(skb)->end_seq = (TCP_SKB_CB(skb)->seq + th->syn + th->fin + in tcp_v4_rcv()
|
/linux-2.4.37.9/net/ipv4/netfilter/ |
D | ip_nat_helper.c | 339 if (after(ntohl(sp->end_seq) - natseq->offset_before, in sack_adjust() 341 new_end_seq = ntohl(sp->end_seq) in sack_adjust() 344 new_end_seq = ntohl(sp->end_seq) in sack_adjust() 350 ntohl(sp->end_seq), new_end_seq); in sack_adjust() 354 ip_nat_cheat_check(~sp->end_seq, in sack_adjust() 359 sp->end_seq = new_end_seq; in sack_adjust()
|
/linux-2.4.37.9/include/net/ |
D | tcp.h | 1035 __u32 end_seq; /* SEQ + FIN + SYN + datalen */ member 1280 tp->snd_sml = TCP_SKB_CB(skb)->end_seq; in tcp_minshall_update() 1336 !after(TCP_SKB_CB(skb)->end_seq, tp->snd_una + tp->snd_wnd)); in tcp_snd_test() 1552 *ptr++ = htonl(sp[this_sack].end_seq); in tcp_build_and_update_options() 1963 !after(TCP_SKB_CB(tp->send_head)->end_seq, in tcp_use_frto()
|
D | sock.h | 256 __u32 end_seq; member
|
/linux-2.4.37.9/net/ipv6/ |
D | tcp_ipv6.c | 1541 if (TCP_SKB_CB(opt_skb)->end_seq == sk->tp_pinfo.af_tcp.rcv_nxt && in tcp_v6_do_rcv() 1591 TCP_SKB_CB(skb)->end_seq = (TCP_SKB_CB(skb)->seq + th->syn + th->fin + in tcp_v6_rcv()
|