Searched refs:found_seg (Results 1 – 1 of 1) sorted by relevance
| /xnu-11215.1.10/bsd/netinet/ |
| H A D | tcp_subr.c | 3977 tcp_update_seg_after_rto(struct tcpcb *tp, struct tcp_seg_sent *found_seg, in tcp_update_seg_after_rto() argument 3980 tcp_rack_transmit_seg(tp, found_seg, found_seg->start_seq, found_seg->end_seq, in tcp_update_seg_after_rto() 3983 if (found_seg == seg) { in tcp_update_seg_after_rto() 4109 struct tcp_seg_sent *found_seg = NULL, *rxmt_seg = NULL; in tcp_seg_sent_insert() local 4113 found_seg = RB_FIND(tcp_seg_sent_tree_head, &tp->t_segs_sent_tree, &segment); in tcp_seg_sent_insert() 4114 if (found_seg != NULL) { in tcp_seg_sent_insert() 4116 tcp_process_rxmt_segs_after_rto(tp, found_seg, start, xmit_ts, flags); in tcp_seg_sent_insert() 4123 RB_FOREACH(found_seg, tcp_seg_sent_tree_head, &tp->t_segs_sent_tree) { in tcp_seg_sent_insert() 4124 if (SEQ_LT(end, found_seg->end_seq) && SEQ_GT(end, found_seg->start_seq)) { in tcp_seg_sent_insert() 4129 tcp_seg_rto_insert_end(tp, found_seg->start_seq, end, xmit_ts, in tcp_seg_sent_insert() [all …]
|