Skip to content

Commit 954ed31

Browse files
committed
Remove debug printf
1 parent 904fcf7 commit 954ed31

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

picoquic/bbr.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2216,11 +2216,6 @@ static void picoquic_bbr_notify(
22162216
break;
22172217
case picoquic_congestion_notification_lost_feedback:
22182218
/* Feedback has been lost. It will be restored at the next notification. */
2219-
#if 1
2220-
if (current_time > 4000000 && current_time < 4300000) {
2221-
DBG_PRINTF("%s", "Bug");
2222-
}
2223-
#endif
22242219
BBREnterLostFeedback(bbr_state, path_x);
22252220
break;
22262221
case picoquic_congestion_notification_rtt_measurement:

picoquic/sender.c

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4437,11 +4437,7 @@ static int picoquic_select_next_path(picoquic_cnx_t * cnx, uint64_t current_time
44374437
static int picoquic_check_cc_feedback_timer(picoquic_cnx_t* cnx, uint64_t* next_wake_time, uint64_t current_time)
44384438
{
44394439
int ret = 0;
4440-
#if 1
4441-
if (current_time > 4020000) {
4442-
DBG_PRINTF("%s", "bug");
4443-
}
4444-
#endif
4440+
44454441
if (cnx->is_lost_feedback_notification_required && cnx->congestion_alg != NULL) {
44464442
for (int i = 0; i < cnx->nb_paths; i++) {
44474443
picoquic_path_t* path_x = cnx->path[i];

0 commit comments

Comments
 (0)