@@ -266,7 +266,7 @@ static void picoquic_cubic_notify(
266
266
/* Using RTT increases as signal to get out of initial slow start */
267
267
if (cubic_state -> ssthresh == UINT64_MAX &&
268
268
picoquic_hystart_test (& cubic_state -> rtt_filter , (cnx -> is_time_stamp_enabled ) ? ack_state -> one_way_delay : ack_state -> rtt_measurement ,
269
- cnx -> path [0 ]-> pacing_packet_time_microsec , current_time , cnx -> is_time_stamp_enabled )) {
269
+ cnx -> path [0 ]-> pacing . packet_time_microsec , current_time , cnx -> is_time_stamp_enabled )) {
270
270
/* RTT increased too much, get out of slow start! */
271
271
if (cubic_state -> rtt_filter .rtt_filtered_min > PICOQUIC_TARGET_RENO_RTT ){
272
272
double correction ;
@@ -518,7 +518,7 @@ static void picoquic_dcubic_notify(
518
518
* for getting out of slow start, but also for ending a cycle
519
519
* during congestion avoidance */
520
520
if (picoquic_hystart_test (& cubic_state -> rtt_filter , (cnx -> is_time_stamp_enabled ) ? ack_state -> one_way_delay : ack_state -> rtt_measurement ,
521
- cnx -> path [0 ]-> pacing_packet_time_microsec , current_time , cnx -> is_time_stamp_enabled )) {
521
+ cnx -> path [0 ]-> pacing . packet_time_microsec , current_time , cnx -> is_time_stamp_enabled )) {
522
522
dcubic_exit_slow_start (cnx , path_x , notification , cubic_state , current_time );
523
523
}
524
524
break ;
@@ -578,7 +578,7 @@ static void picoquic_dcubic_notify(
578
578
}
579
579
580
580
if (picoquic_hystart_test (& cubic_state -> rtt_filter , (cnx -> is_time_stamp_enabled ) ? ack_state -> one_way_delay : ack_state -> rtt_measurement ,
581
- cnx -> path [0 ]-> pacing_packet_time_microsec , current_time , cnx -> is_time_stamp_enabled )) {
581
+ cnx -> path [0 ]-> pacing . packet_time_microsec , current_time , cnx -> is_time_stamp_enabled )) {
582
582
if (current_time - cubic_state -> start_of_epoch > path_x -> smoothed_rtt ||
583
583
cubic_state -> recovery_sequence <= picoquic_cc_get_ack_number (cnx , path_x )) {
584
584
/* re-enter recovery if this is a new event */
@@ -643,7 +643,7 @@ static void picoquic_dcubic_notify(
643
643
break ;
644
644
case picoquic_congestion_notification_rtt_measurement :
645
645
if (picoquic_hystart_test (& cubic_state -> rtt_filter , (cnx -> is_time_stamp_enabled ) ? ack_state -> one_way_delay : ack_state -> rtt_measurement ,
646
- cnx -> path [0 ]-> pacing_packet_time_microsec , current_time , cnx -> is_time_stamp_enabled )) {
646
+ cnx -> path [0 ]-> pacing . packet_time_microsec , current_time , cnx -> is_time_stamp_enabled )) {
647
647
if (current_time - cubic_state -> start_of_epoch > path_x -> smoothed_rtt ||
648
648
cubic_state -> recovery_sequence <= picoquic_cc_get_ack_number (cnx , path_x )) {
649
649
/* re-enter recovery */
0 commit comments