Home
last modified time | relevance | path

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

/xnu-11417.121.6/bsd/netinet/
H A Dtcp_subr.c4022 tcp_update_seg_after_rto(struct tcpcb *tp, struct tcp_seg_sent *found_seg, in tcp_update_seg_after_rto() argument
4025 tcp_rack_transmit_seg(tp, found_seg, found_seg->start_seq, found_seg->end_seq, in tcp_update_seg_after_rto()
4028 if (found_seg == seg) { in tcp_update_seg_after_rto()
4154 struct tcp_seg_sent *found_seg = NULL, *rxmt_seg = NULL; in tcp_seg_sent_insert() local
4158 found_seg = RB_FIND(tcp_seg_sent_tree_head, &tp->t_segs_sent_tree, &segment); in tcp_seg_sent_insert()
4159 if (found_seg != NULL) { in tcp_seg_sent_insert()
4161 tcp_process_rxmt_segs_after_rto(tp, found_seg, start, xmit_ts, flags); in tcp_seg_sent_insert()
4168 RB_FOREACH(found_seg, tcp_seg_sent_tree_head, &tp->t_segs_sent_tree) { in tcp_seg_sent_insert()
4169 if (SEQ_LT(end, found_seg->end_seq) && SEQ_GT(end, found_seg->start_seq)) { in tcp_seg_sent_insert()
4174 tcp_seg_rto_insert_end(tp, found_seg->start_seq, end, xmit_ts, in tcp_seg_sent_insert()
[all …]